diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-17 14:17:51 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-17 14:17:51 -0700 |
commit | 7f5b4d79f225b94e9291ab1572ce8ce2a8ba50d2 (patch) | |
tree | a92a2891482fb30590b28b6f28a54355b6f2039b | |
parent | f7b2256ab0fc1ee0676073f8f59d0234cac0f840 (diff) |
Tweak wording in verifyAttestationApple test
-rw-r--r-- | packages/server/src/registration/verifications/verifyAttestationApple.test.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/server/src/registration/verifications/verifyAttestationApple.test.ts b/packages/server/src/registration/verifications/verifyAttestationApple.test.ts index aa26cf3..50038eb 100644 --- a/packages/server/src/registration/verifications/verifyAttestationApple.test.ts +++ b/packages/server/src/registration/verifications/verifyAttestationApple.test.ts @@ -2,12 +2,11 @@ import { assertEquals } from "https://deno.land/std@0.198.0/assert/mod.ts"; import { verifyRegistrationResponse } from "../verifyRegistrationResponse.ts"; -// /** * TODO (Aug 2023): This test has to be ignored for now because Deno doesn't - * support signature verification if the key algorithm and hash algorithm - * aren't the same. In this test the key alg is P-384 and the hash alg is - * SHA-256... + * support signature verification if the key curve and hash algorithm + * aren't one of two supported combinations. In this test the key curve is + * P-384 and the hash alg is SHA-256... * * See https://deno.land/x/deno@v1.36.1/ext/crypto/00_crypto.js?source#L1338 * |