private static final String REALM_NAME = "Digest_Realm";
private static final String ZERO = "00000000";
static AuthenticationMechanism getTestMechanism() {
return new DigestAuthenticationMechanism(Collections.singletonList(DigestAlgorithm.MD5),
Collections.singletonList(DigestQop.AUTH), REALM_NAME, "/", new SimpleNonceManager());
}