use of io.undertow.security.impl.SimpleNonceManager in project undertow by undertow-io.
the class DigestAuthentication2069TestCase method getTestMechanisms.
@Override
protected List<AuthenticationMechanism> getTestMechanisms() {
List<DigestQop> qopList = Collections.emptyList();
AuthenticationMechanism mechanism = new DigestAuthenticationMechanism(Collections.singletonList(DigestAlgorithm.MD5), qopList, REALM_NAME, "/", new SimpleNonceManager());
return Collections.singletonList(mechanism);
}
Aggregations