Class PrfBasedKeyDerivationParameters
- java.lang.Object
-
- com.google.crypto.tink.Parameters
-
- com.google.crypto.tink.keyderivation.KeyDerivationParameters
-
- com.google.crypto.tink.keyderivation.PrfBasedKeyDerivationParameters
-
@Immutable public final class PrfBasedKeyDerivationParameters extends KeyDerivationParameters
Represents the parameters needed in aPrfBasedKeyDerivationKey.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPrfBasedKeyDerivationParameters.BuilderBuilds a new PrfBasedKeyDerivationParameters instance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PrfBasedKeyDerivationParameters.Builderbuilder()booleanequals(java.lang.Object o)ParametersgetDerivedKeyParameters()The parameters of the keys which are in the result keyset when the user callsKeysetDeriver.deriveKeyset().PrfParametersgetPrfParameters()The parameters of the PRF used to create randomness from the salt.inthashCode()java.lang.StringtoString()-
Methods inherited from class com.google.crypto.tink.keyderivation.KeyDerivationParameters
hasIdRequirement
-
-
-
-
Method Detail
-
builder
public static PrfBasedKeyDerivationParameters.Builder builder()
-
getPrfParameters
public PrfParameters getPrfParameters()
The parameters of the PRF used to create randomness from the salt.
-
getDerivedKeyParameters
public Parameters getDerivedKeyParameters()
The parameters of the keys which are in the result keyset when the user callsKeysetDeriver.deriveKeyset().- Specified by:
getDerivedKeyParametersin classKeyDerivationParameters
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-