File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
webauthn-server-core/src/test/scala/com/yubico/webauthn Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -4110,6 +4110,24 @@ class RelyingPartyRegistrationSpec
4110
4110
)
4111
4111
}
4112
4112
4113
+ it(" ES384." ) {
4114
+ pubKeyCredParams should contain(
4115
+ PublicKeyCredentialParameters .ES384
4116
+ )
4117
+ pubKeyCredParams map (_.getAlg) should contain(
4118
+ COSEAlgorithmIdentifier .ES384
4119
+ )
4120
+ }
4121
+
4122
+ it(" ES512." ) {
4123
+ pubKeyCredParams should contain(
4124
+ PublicKeyCredentialParameters .ES512
4125
+ )
4126
+ pubKeyCredParams map (_.getAlg) should contain(
4127
+ COSEAlgorithmIdentifier .ES512
4128
+ )
4129
+ }
4130
+
4113
4131
it(" EdDSA, when available." ) {
4114
4132
// The RelyingParty constructor call needs to be here inside the `it` call in order to have the right JCA provider environment
4115
4133
val rp = RelyingParty
You can’t perform that action at this time.
0 commit comments