mirror of
https://github.com/open-reception/appointment-booking-software.git
synced 2026-08-17 21:25:52 +02:00
* Use PRF extension for deterministic Zero Knowledge Shards * Webauthn validation lib * Use attestation and validate passkeys * Use attestation objects and cose-format keys in frontend. Added additional checks so that we don't create orphaned users when validation fails. * Fixed type check error * Fix PRF salt documentation to match implementation (#147) * Initial plan * Fix PRF salt documentation to match implementation Co-authored-by: hbel <7416029+hbel@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: hbel <7416029+hbel@users.noreply.github.com> * Use dev instead of node env * Migration fixes --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: hbel <7416029+hbel@users.noreply.github.com>
7 lines
203 B
SQL
7 lines
203 B
SQL
CREATE TABLE "challenge_throttle" (
|
|
"id" text PRIMARY KEY NOT NULL,
|
|
"failed_attempts" integer DEFAULT 0 NOT NULL,
|
|
"last_attempt_at" timestamp DEFAULT now() NOT NULL,
|
|
"reset_at" timestamp NOT NULL
|
|
);
|