summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-05-18 17:23:36 -0700
committerMatthew Miller <matthew@millerti.me>2020-05-18 17:23:36 -0700
commit48c3acd1fa288fe2d7670e6babed6448a6bb5351 (patch)
tree773e354dc1b2051464cb52eae316ba118a75cc81 /src
parent7217bc9978408e06a8dd446ac7e728ad816463eb (diff)
Try new naming scheme for base64 strings
Diffstat (limited to 'src')
-rw-r--r--src/types.ts4
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 {