Package com.google.crypto.tink
Class Parameters
- java.lang.Object
-
- com.google.crypto.tink.Parameters
-
- Direct Known Subclasses:
AeadParameters,DeterministicAeadParameters,HybridParameters,JwtMacParameters,JwtSignatureParameters,KeyDerivationParameters,LegacyProtoParameters,MacParameters,PrfParameters,SignatureParameters,StreamingAeadParameters
@Immutable public abstract class Parameters extends java.lang.ObjectRepresents a cryptographic function without the actual key material.In Tink, a Key represents a set of cryptographic functions. The Parameters class contains all the information about the function which is not randomly chosen with each instance.
-
-
Constructor Summary
Constructors Constructor Description Parameters()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract booleanhasIdRequirement()Returns true if a key created with the parameters in this object has to have a certain ID when it is in a keyset.
-
-
-
Method Detail
-
hasIdRequirement
public abstract boolean hasIdRequirement()
Returns true if a key created with the parameters in this object has to have a certain ID when it is in a keyset.In Tink, certain keys change their behavior depending on the key id (for example, an
Aeadobject can prefix the ciphertext with the big endian encoding of the key id). If this is the case, such a key should require a unique id inKey.getIdRequirementOrNull()and return true here.
-
-