com.webauthn4j.validator.attestation.statement.none.NoneAttestationStatementValidator Java Examples
The following examples show how to use
com.webauthn4j.validator.attestation.statement.none.NoneAttestationStatementValidator.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WebAuthnManager.java From webauthn4j with Apache License 2.0 | 6 votes |
/** * Creates {@link WebAuthnManager} with non strict configuration * * @param objectConverter ObjectConverter * @return configured {@link WebAuthnManager} */ public static WebAuthnManager createNonStrictWebAuthnManager(ObjectConverter objectConverter) { return new WebAuthnManager( Arrays.asList( new NoneAttestationStatementValidator(), new NullFIDOU2FAttestationStatementValidator(), new NullPackedAttestationStatementValidator(), new NullTPMAttestationStatementValidator(), new NullAndroidKeyAttestationStatementValidator(), new NullAndroidSafetyNetAttestationStatementValidator() ), new NullCertPathTrustworthinessValidator(), new NullSelfAttestationTrustworthinessValidator(), objectConverter ); }
Example #2
Source File: WebAuthnRegistrationManager.java From webauthn4j with Apache License 2.0 | 6 votes |
/** * Creates {@link WebAuthnManager} with non strict configuration * * @param objectConverter ObjectConverter * @return configured {@link WebAuthnManager} */ public static WebAuthnRegistrationManager createNonStrictWebAuthnRegistrationManager(ObjectConverter objectConverter) { return new WebAuthnRegistrationManager( Arrays.asList( new NoneAttestationStatementValidator(), new NullFIDOU2FAttestationStatementValidator(), new NullPackedAttestationStatementValidator(), new NullTPMAttestationStatementValidator(), new NullAndroidKeyAttestationStatementValidator(), new NullAndroidSafetyNetAttestationStatementValidator() ), new NullCertPathTrustworthinessValidator(), new NullSelfAttestationTrustworthinessValidator(), objectConverter ); }
Example #3
Source File: RegistrationDataValidatorTest.java From webauthn4j with Apache License 2.0 | 6 votes |
public RegistrationDataValidatorTest() { ObjectConverter objectConverter = new ObjectConverter(); target = new RegistrationDataValidator(Arrays.asList( new NoneAttestationStatementValidator(), new NullFIDOU2FAttestationStatementValidator(), new NullPackedAttestationStatementValidator(), new NullTPMAttestationStatementValidator(), new NullAndroidKeyAttestationStatementValidator(), new NullAndroidSafetyNetAttestationStatementValidator() ), new NullCertPathTrustworthinessValidator(), new NullSelfAttestationTrustworthinessValidator(), Collections.emptyList(), objectConverter); }
Example #4
Source File: WebAuthnRegistrationManagerTest.java From webauthn4j with Apache License 2.0 | 6 votes |
@Test void constructor_test() { NoneAttestationStatementValidator noneAttestationStatementValidator = new NoneAttestationStatementValidator(); PackedAttestationStatementValidator packedAttestationStatementValidator = new PackedAttestationStatementValidator(); FIDOU2FAttestationStatementValidator fidoU2FAttestationStatementValidator = new FIDOU2FAttestationStatementValidator(); AndroidKeyAttestationStatementValidator androidKeyAttestationStatementValidator = new AndroidKeyAttestationStatementValidator(); TrustAnchorsResolver trustAnchorsResolver = TestAttestationUtil.createTrustAnchorProviderWith3tierTestRootCACertificate(); WebAuthnRegistrationManager webAuthnRegistrationManager = new WebAuthnRegistrationManager( Arrays.asList( noneAttestationStatementValidator, packedAttestationStatementValidator, fidoU2FAttestationStatementValidator, androidKeyAttestationStatementValidator), new TrustAnchorCertPathTrustworthinessValidator(trustAnchorsResolver), new DefaultSelfAttestationTrustworthinessValidator() ); assertThat(webAuthnRegistrationManager).isNotNull(); }
Example #5
Source File: WebAuthnManagerTest.java From webauthn4j with Apache License 2.0 | 6 votes |
@Test void constructor_test() { NoneAttestationStatementValidator noneAttestationStatementValidator = new NoneAttestationStatementValidator(); PackedAttestationStatementValidator packedAttestationStatementValidator = new PackedAttestationStatementValidator(); FIDOU2FAttestationStatementValidator fidoU2FAttestationStatementValidator = new FIDOU2FAttestationStatementValidator(); AndroidKeyAttestationStatementValidator androidKeyAttestationStatementValidator = new AndroidKeyAttestationStatementValidator(); TrustAnchorsResolver trustAnchorsResolver = TestAttestationUtil.createTrustAnchorProviderWith3tierTestRootCACertificate(); WebAuthnManager webAuthnManager = new WebAuthnManager( Arrays.asList( noneAttestationStatementValidator, packedAttestationStatementValidator, fidoU2FAttestationStatementValidator, androidKeyAttestationStatementValidator), new TrustAnchorCertPathTrustworthinessValidator(trustAnchorsResolver), new DefaultSelfAttestationTrustworthinessValidator() ); assertThat(webAuthnManager).isNotNull(); }
Example #6
Source File: WebAuthnRegister.java From keycloak with Apache License 2.0 | 5 votes |
private WebAuthnRegistrationManager createWebAuthnRegistrationManager() { return new WebAuthnRegistrationManager( Arrays.asList( new NoneAttestationStatementValidator(), new PackedAttestationStatementValidator(), new TPMAttestationStatementValidator(), new AndroidKeyAttestationStatementValidator(), new AndroidSafetyNetAttestationStatementValidator(), new FIDOU2FAttestationStatementValidator() ), this.certPathtrustValidator, new DefaultSelfAttestationTrustworthinessValidator(), Collections.emptyList(), // Custom Registration Validator is not supported new ObjectConverter() ); }