use of com.webauthn4j.data.extension.UvmEntry in project webauthn4j by webauthn4j.
the class AuthenticationExtensionsAuthenticatorOutputsTest method equals_hashCode_test.
@Test
void equals_hashCode_test() {
UvmEntries uvm = new UvmEntries(Collections.singletonList(new UvmEntry(UserVerificationMethod.FINGERPRINT_INTERNAL, KeyProtectionType.SOFTWARE, MatcherProtectionType.ON_CHIP)));
AuthenticationExtensionsAuthenticatorOutputs.BuilderForAuthentication builder1 = new AuthenticationExtensionsAuthenticatorOutputs.BuilderForAuthentication();
builder1.setUvm(uvm);
AuthenticationExtensionsAuthenticatorOutputs<AuthenticationExtensionAuthenticatorOutput> instance1 = builder1.build();
AuthenticationExtensionsAuthenticatorOutputs.BuilderForAuthentication builder2 = new AuthenticationExtensionsAuthenticatorOutputs.BuilderForAuthentication();
builder2.setUvm(uvm);
AuthenticationExtensionsAuthenticatorOutputs<AuthenticationExtensionAuthenticatorOutput> instance2 = builder2.build();
assertThat(instance1).isEqualTo(instance2).hasSameHashCodeAs(instance2);
}
use of com.webauthn4j.data.extension.UvmEntry in project webauthn4j by webauthn4j.
the class AuthenticationExtensionsAuthenticatorOutputsTest method authentication_variant_test.
@SuppressWarnings("java:S5961")
@Test
void authentication_variant_test() {
UvmEntries uvm = new UvmEntries(Collections.singletonList(new UvmEntry(UserVerificationMethod.FINGERPRINT_INTERNAL, KeyProtectionType.SOFTWARE, MatcherProtectionType.ON_CHIP)));
AuthenticationExtensionsAuthenticatorOutputs.BuilderForAuthentication builder = new AuthenticationExtensionsAuthenticatorOutputs.BuilderForAuthentication();
builder.setUvm(uvm);
builder.setHMACGetSecret(new byte[32]);
builder.set("unknown", 1);
AuthenticationExtensionsAuthenticatorOutputs<AuthenticationExtensionAuthenticatorOutput> target = builder.build();
assertThat(target.getKeys()).containsExactlyInAnyOrder("uvm", "hmac-secret", "unknown");
assertThat(target.getUvm()).isEqualTo(uvm);
assertThat((byte[]) target.getHMACSecret()).isEqualTo(new byte[32]);
assertThat(target.getHMACCreateSecret()).isNull();
assertThat(target.getHMACGetSecret()).isEqualTo(new byte[32]);
assertThat(target.getUnknownKeys()).containsExactly("unknown");
assertThat(target.getValue("uvm")).isEqualTo(uvm);
assertThat(target.getValue("hmac-secret")).isEqualTo(new byte[32]);
// hmacCreateSecret and hmacGetSecret is not a key of HMACSecretAuthenticationExtensionAuthenticatorInput
assertThat(target.getValue("hmacCreateSecret")).isNull();
assertThat(target.getValue("hmacGetSecret")).isNull();
assertThat(target.getValue("unknown")).isEqualTo(1);
assertThat(target.getValue("invalid")).isNull();
assertThat(target.getExtension(UserVerificationMethodExtensionAuthenticatorOutput.class)).isNotNull();
assertThat(target.getExtension(UserVerificationMethodExtensionAuthenticatorOutput.class).getIdentifier()).isEqualTo("uvm");
assertThat(target.getExtension(UserVerificationMethodExtensionAuthenticatorOutput.class).getUvm()).isEqualTo(uvm);
assertThat(target.getExtension(HMACSecretAuthenticationExtensionAuthenticatorOutput.class)).isNotNull();
assertThat(target.getExtension(HMACSecretAuthenticationExtensionAuthenticatorOutput.class).getIdentifier()).isEqualTo("hmac-secret");
assertThat(target.getExtension(HMACSecretAuthenticationExtensionAuthenticatorOutput.class).getValue()).isEqualTo(new byte[32]);
}
Aggregations