diff options
author | Matthew Miller <matthew@millerti.me> | 2020-07-24 09:11:56 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-07-24 09:12:07 -0700 |
commit | cd2acd3394080af8c61234144f6a5052088b788e (patch) | |
tree | 2967bd9713297ac0d53053c961bdadf4ae8972df | |
parent | 9b964a251b940222bbfa87cb0f207963146d70ce (diff) |
Leave -65535 (RSA-SHA1) out of attestation options
Don’t encourage use of this deprecated algorithm for new credentials
-rw-r--r-- | packages/server/src/attestation/generateAttestationOptions.test.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/server/src/attestation/generateAttestationOptions.test.ts b/packages/server/src/attestation/generateAttestationOptions.test.ts index ff1fcba..a903be6 100644 --- a/packages/server/src/attestation/generateAttestationOptions.test.ts +++ b/packages/server/src/attestation/generateAttestationOptions.test.ts @@ -40,7 +40,6 @@ test('should generate credential request options suitable for sending via JSON', { alg: -257, type: 'public-key' }, { alg: -258, type: 'public-key' }, { alg: -259, type: 'public-key' }, - { alg: -65535, type: 'public-key' }, ], timeout, attestation: attestationType, |