diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-18 17:23:36 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-18 17:23:36 -0700 |
commit | 48c3acd1fa288fe2d7670e6babed6448a6bb5351 (patch) | |
tree | 773e354dc1b2051464cb52eae316ba118a75cc81 | |
parent | 7217bc9978408e06a8dd446ac7e728ad816463eb (diff) |
Try new naming scheme for base64 strings
-rw-r--r-- | src/types.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types.ts b/src/types.ts index b3d7d60..f3993da 100644 --- a/src/types.ts +++ b/src/types.ts @@ -13,8 +13,8 @@ export type AssertionCredentials = { export interface EncodedAuthenticatorAttestationResponse extends Omit< AuthenticatorAttestationResponse, 'clientDataJSON' | 'attestationObject' > { - clientDataJSON: string, - attestationObject: string; + base64ClientDataJSON: string, + base64AttestationObject: string; } export enum ATTESTATION_FORMATS { |