VerifyResult Class
- java.
lang. Object - com.
azure. security. keyvault. keys. cryptography. models. VerifyResult
- com.
public final class VerifyResult
Represents the details of verify operation result.
Constructor Summary
Constructor | Description |
---|---|
VerifyResult(Boolean isValid, SignatureAlgorithm algorithm, String keyId) |
Creates the instance of Verify Result holding the verification response information. |
Method Summary
Modifier and Type | Method and Description |
---|---|
Signature |
getAlgorithm()
Get the signature algorithm used to verify the signature. |
String |
getKeyId()
Get the identifier of the key used for the verify operation |
Boolean |
isValid()
Get the verify operation result. |
Methods inherited from java.lang.Object
Constructor Details
VerifyResult
public VerifyResult(Boolean isValid, SignatureAlgorithm algorithm, String keyId)
Creates the instance of Verify Result holding the verification response information.
Parameters:
Method Details
getAlgorithm
public SignatureAlgorithm getAlgorithm()
Get the signature algorithm used to verify the signature.
Returns:
getKeyId
public String getKeyId()
Get the identifier of the key used for the verify operation
Returns:
isValid
public Boolean isValid()
Get the verify operation result.
Returns:
Applies to
Azure SDK for Java