Class Credentials.Provided
java.lang.Object
org.apache.pekko.http.scaladsl.server.directives.Credentials.Provided
- All Implemented Interfaces:
Serializable,Credentials,scala.Equals,scala.Product
- Enclosing interface:
- Credentials
public abstract static class Credentials.Provided
extends Object
implements Credentials, scala.Product, Serializable
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.pekko.http.scaladsl.server.directives.Credentials
Credentials.Missing$, Credentials.Provided, Credentials.Provided$ -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanprovideVerify(String secret, scala.Function2<String, String, Object> verifier) Compares with custom 'verifier' and the passed secret with the received secret part of the Credentials.abstract booleanprovideVerify(scala.Function1<String, Object> verifier) Compares with custom 'verifier' the received secret part of the Credentials.booleanSafely compares the passed insecretwith the received secret part of the Credentials.abstract booleanFirst applies the passed inhasherfunction to the received secret part of the Credentials and then safely compares the passed insecretwith the hashed received secret.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface scala.Equals
canEqual, equalsMethods inherited from interface scala.Product
productArity, productElement, productElementName, productElementNames, productIterator, productPrefix
-
Constructor Details
-
Provided
-
-
Method Details
-
identifier
-
verify
First applies the passed inhasherfunction to the received secret part of the Credentials and then safely compares the passed insecretwith the hashed received secret. This method can be used if the secret is not stored in plain text. Use of this method instead of manual String equality testing is recommended in order to guard against timing attacks.See also {@link EnhancedString#secure_==}, for more information.
- Parameters:
secret- (undocumented)hasher- (undocumented)- Returns:
- (undocumented)
-
verify
Safely compares the passed insecretwith the received secret part of the Credentials. Use of this method instead of manual String equality testing is recommended in order to guard against timing attacks.See also {@link EnhancedString#secure_==}, for more information.
- Parameters:
secret- (undocumented)- Returns:
- (undocumented)
-
provideVerify
Compares with custom 'verifier' the received secret part of the Credentials. Use of this method only if custom String equality testing is required, not recommended.- Parameters:
verifier- (undocumented)- Returns:
- (undocumented)
-
provideVerify
Compares with custom 'verifier' and the passed secret with the received secret part of the Credentials. Use of this method only if custom String equality testing is required, not recommended.- Parameters:
secret- (undocumented)verifier- (undocumented)- Returns:
- (undocumented)
-