Package org.apereo.cas.digest.util
Class DigestAuthenticationUtils
- java.lang.Object
-
- org.apereo.cas.digest.util.DigestAuthenticationUtils
-
@Deprecated(since="6.6") public class DigestAuthenticationUtils extends java.lang.ObjectDeprecated.Since 6.6This isDigestAuthenticationUtils.- Since:
- 5.0.0
-
-
Constructor Summary
Constructors Constructor Description DigestAuthenticationUtils()Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.lang.StringcreateAuthenticateHeader(java.lang.String realm, java.lang.String authMethod, java.lang.String nonce)Deprecated.Create authenticate header, containing the realm, nonce, opaque, etc.static java.lang.StringcreateCnonce()Deprecated.Create c-nonce string.static java.lang.StringcreateNonce()Deprecated.Create nonce string.static java.lang.StringcreateOpaque(java.lang.String domain, java.lang.String nonce)Deprecated.Create opaque.
-
-
-
Method Detail
-
createNonce
public static java.lang.String createNonce()
Deprecated.Create nonce string.- Returns:
- the nonce
-
createCnonce
public static java.lang.String createCnonce()
Deprecated.Create c-nonce string.- Returns:
- the cnonce
-
createOpaque
public static java.lang.String createOpaque(java.lang.String domain, java.lang.String nonce)Deprecated.Create opaque.- Parameters:
domain- the domainnonce- the nonce- Returns:
- the opaque
-
createAuthenticateHeader
public static java.lang.String createAuthenticateHeader(java.lang.String realm, java.lang.String authMethod, java.lang.String nonce)Deprecated.Create authenticate header, containing the realm, nonce, opaque, etc.- Parameters:
realm- the realmauthMethod- the auth methodnonce- the nonce- Returns:
- the header string
-
-