Class KeyVerifyParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.KeyVerifyParameters
-
public class KeyVerifyParameters extends Object
The key verify parameters.
-
-
Constructor Summary
Constructors Constructor Description KeyVerifyParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonWebKeySignatureAlgorithm
algorithm()
Get the algorithm value.byte[]
digest()
Get the digest value.byte[]
signature()
Get the signature value.KeyVerifyParameters
withAlgorithm(JsonWebKeySignatureAlgorithm algorithm)
Set the algorithm value.KeyVerifyParameters
withDigest(byte[] digest)
Set the digest value.KeyVerifyParameters
withSignature(byte[] signature)
Set the signature value.
-
-
-
Method Detail
-
algorithm
public JsonWebKeySignatureAlgorithm algorithm()
Get the algorithm value.- Returns:
- the algorithm value
-
withAlgorithm
public KeyVerifyParameters withAlgorithm(JsonWebKeySignatureAlgorithm algorithm)
Set the algorithm value.- Parameters:
algorithm
- the algorithm value to set- Returns:
- the KeyVerifyParameters object itself.
-
digest
public byte[] digest()
Get the digest value.- Returns:
- the digest value
-
withDigest
public KeyVerifyParameters withDigest(byte[] digest)
Set the digest value.- Parameters:
digest
- the digest value to set- Returns:
- the KeyVerifyParameters object itself.
-
signature
public byte[] signature()
Get the signature value.- Returns:
- the signature value
-
withSignature
public KeyVerifyParameters withSignature(byte[] signature)
Set the signature value.- Parameters:
signature
- the signature value to set- Returns:
- the KeyVerifyParameters object itself.
-
-