diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-16 19:59:32 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-16 19:59:32 -0700 |
commit | 59f1f2f8e799352f707b3610c22a182a7d477ed5 (patch) | |
tree | 718cfdb865046af4c1b03b27497de9735e15f8d9 /packages/server/src | |
parent | cd577b8cc183a9c05311f69391a53f02c0e90bd9 (diff) |
Replace iso-webcrypto with Deno's crypto
Diffstat (limited to 'packages/server/src')
-rw-r--r-- | packages/server/src/deps.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/server/src/deps.ts b/packages/server/src/deps.ts index c09f3b6..49b79fc 100644 --- a/packages/server/src/deps.ts +++ b/packages/server/src/deps.ts @@ -16,8 +16,7 @@ export type { UserVerificationRequirement, } from '../../typescript-types/src/index.ts'; -// @simplewebauthn/iso-webcrypto -export { default as WebCrypto } from '../../iso-webcrypto/src/browser.ts'; +export { crypto as WebCrypto } from 'https://deno.land/std@0.198.0/crypto/mod.ts'; // cbor (a.k.a. cbor-x in Node land) export * as cborx from 'https://deno.land/x/cbor@v1.5.2/index.js'; |