File tree Expand file tree Collapse file tree
webauthn-server-core/src/test/scala/com/yubico/webauthn Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -923,7 +923,9 @@ object TestAuthenticator {
923923 (TpmAlgHash .SHA512 , TpmAlgAsym .RSA )
924924 case COSEAlgorithmIdentifier .RS1 => (TpmAlgHash .SHA1 , TpmAlgAsym .RSA )
925925 case COSEAlgorithmIdentifier .EdDSA | COSEAlgorithmIdentifier .Ed25519 |
926- COSEAlgorithmIdentifier .Ed448 =>
926+ COSEAlgorithmIdentifier .Ed448 | COSEAlgorithmIdentifier .ML_DSA_44 |
927+ COSEAlgorithmIdentifier .ML_DSA_65 |
928+ COSEAlgorithmIdentifier .ML_DSA_87 =>
927929 ???
928930 }
929931 val hashFunc = hashId match {
@@ -974,7 +976,10 @@ object TestAuthenticator {
974976 COSEAlgorithmIdentifier .RS512 |
975977 COSEAlgorithmIdentifier .EdDSA |
976978 COSEAlgorithmIdentifier .Ed25519 |
977- COSEAlgorithmIdentifier .Ed448 =>
979+ COSEAlgorithmIdentifier .Ed448 |
980+ COSEAlgorithmIdentifier .ML_DSA_44 |
981+ COSEAlgorithmIdentifier .ML_DSA_65 |
982+ COSEAlgorithmIdentifier .ML_DSA_87 =>
978983 ???
979984 }),
980985 // kdf_scheme: ??? (unused?)
Original file line number Diff line number Diff line change @@ -1038,6 +1038,7 @@ object Generators {
10381038 evalByCredential.asJava,
10391039 eval,
10401040 )
1041+ case (None , None ) => ??? // Impossible given Gen.oneOf above
10411042 }
10421043 implicit val arbitraryPrfAuthenticationInput
10431044 : Arbitrary [PrfAuthenticationInput ] = Arbitrary (authenticationInput)
You can’t perform that action at this time.
0 commit comments