summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/helpers/decodeAttestationObject.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-06-02 15:14:31 -0700
committerMatthew Miller <matthew@millerti.me>2020-06-02 15:14:31 -0700
commite82c9e9f813897015c9054aa6d279e8ca4279f07 (patch)
treee8e434b9b95362a86f70c93b89c6f94434ba42ad /packages/server/src/helpers/decodeAttestationObject.ts
parent2ed2974517eb934f878b3e0fb0baa024646979c4 (diff)
Standardize on use of “base64url” where applicable
Diffstat (limited to 'packages/server/src/helpers/decodeAttestationObject.ts')
-rw-r--r--packages/server/src/helpers/decodeAttestationObject.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/helpers/decodeAttestationObject.ts b/packages/server/src/helpers/decodeAttestationObject.ts
index 374dbf4..2eb9997 100644
--- a/packages/server/src/helpers/decodeAttestationObject.ts
+++ b/packages/server/src/helpers/decodeAttestationObject.ts
@@ -2,9 +2,9 @@ import base64url from 'base64url';
import cbor from 'cbor';
/**
- * Convert an AttestationObject from base64 string to a proper object
+ * Convert an AttestationObject from base64url string to a proper object
*
- * @param base64AttestationObject Base64-encoded Attestation Object
+ * @param base64AttestationObject Base64URL-encoded Attestation Object
*/
export default function decodeAttestationObject(
base64AttestationObject: string,