diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-26 11:23:30 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-26 11:23:30 -0700 |
commit | 99bfef338ca068be1f734bc6ca784e12c8df7d7a (patch) | |
tree | b6ebfa742c6266843562c1d43a51b7df2aa7c799 /packages/browser/src/methods | |
parent | 2ca49ecadf793126b8ee02bcd79a8689a7c20866 (diff) |
Rename WebAuthntine to SimpleWebAuthn
Diffstat (limited to 'packages/browser/src/methods')
-rw-r--r-- | packages/browser/src/methods/startAssertion.ts | 4 | ||||
-rw-r--r-- | packages/browser/src/methods/startAttestation.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/browser/src/methods/startAssertion.ts b/packages/browser/src/methods/startAssertion.ts index 826763a..0648e56 100644 --- a/packages/browser/src/methods/startAssertion.ts +++ b/packages/browser/src/methods/startAssertion.ts @@ -2,7 +2,7 @@ import { PublicKeyCredentialRequestOptionsJSON, AuthenticatorAssertionResponseJSON, AssertionCredential, -} from '@webauthntine/typescript-types'; +} from '@simplewebauthn/typescript-types'; import toUint8Array from '../helpers/toUint8Array'; import toBase64String from '../helpers/toBase64String'; @@ -12,7 +12,7 @@ import toPublicKeyCredentialDescriptor from '../helpers/toPublicKeyCredentialDes /** * Begin authenticator "login" via WebAuthn assertion * - * @param requestOptionsJSON Output from @webauthntine/server's generateAssertionOptions(...) + * @param requestOptionsJSON Output from @simplewebauthn/server's generateAssertionOptions(...) */ export default async function startAssertion( requestOptionsJSON: PublicKeyCredentialRequestOptionsJSON, diff --git a/packages/browser/src/methods/startAttestation.ts b/packages/browser/src/methods/startAttestation.ts index 14ffc53..f77c2de 100644 --- a/packages/browser/src/methods/startAttestation.ts +++ b/packages/browser/src/methods/startAttestation.ts @@ -2,7 +2,7 @@ import { PublicKeyCredentialCreationOptionsJSON, AuthenticatorAttestationResponseJSON, AttestationCredential, -} from '@webauthntine/typescript-types'; +} from '@simplewebauthn/typescript-types'; import toUint8Array from '../helpers/toUint8Array'; import toBase64String from '../helpers/toBase64String'; @@ -12,7 +12,7 @@ import toPublicKeyCredentialDescriptor from '../helpers/toPublicKeyCredentialDes /** * Begin authenticator "registration" via WebAuthn attestation * - * @param creationOptionsJSON Output from @webauthntine/server's generateAttestationOptions(...) + * @param creationOptionsJSON Output from @simplewebauthn/server's generateAttestationOptions(...) */ export default async function startAttestation( creationOptionsJSON: PublicKeyCredentialCreationOptionsJSON, |