Uses of Class
com.azure.security.keyvault.keys.cryptography.models.SignatureAlgorithm
Packages that use SignatureAlgorithm
Package
Description
Package containing classes for creating
CryptographyAsyncClient
and CryptographyClient to perform cryptography operations.Package containing classes used for representing output/results of encryption, decryption, signing, verifying,
key wrapping and unwrapping operations.
-
Uses of SignatureAlgorithm in com.azure.security.keyvault.keys.cryptography
Methods in com.azure.security.keyvault.keys.cryptography with parameters of type SignatureAlgorithmModifier and TypeMethodDescriptionCryptographyAsyncClient.sign(SignatureAlgorithm algorithm, byte[] digest) Creates a signature from a digest using the configured key.CryptographyClient.sign(SignatureAlgorithm algorithm, byte[] digest) Creates a signature from a digest using the configured key.CryptographyClient.sign(SignatureAlgorithm algorithm, byte[] digest, com.azure.core.util.Context context) Creates a signature from a digest using the configured key.CryptographyAsyncClient.signData(SignatureAlgorithm algorithm, byte[] data) Creates a signature from the raw data using the configured key.CryptographyClient.signData(SignatureAlgorithm algorithm, byte[] data) Creates a signature from the raw data using the configured key.CryptographyClient.signData(SignatureAlgorithm algorithm, byte[] data, com.azure.core.util.Context context) Creates a signature from the raw data using the configured key.CryptographyAsyncClient.verify(SignatureAlgorithm algorithm, byte[] digest, byte[] signature) Verifies a signature using the configured key.CryptographyClient.verify(SignatureAlgorithm algorithm, byte[] digest, byte[] signature) Verifies a signature using the configured key.CryptographyClient.verify(SignatureAlgorithm algorithm, byte[] digest, byte[] signature, com.azure.core.util.Context context) Verifies a signature using the configured key.CryptographyAsyncClient.verifyData(SignatureAlgorithm algorithm, byte[] data, byte[] signature) Verifies a signature against the raw data using the configured key.CryptographyClient.verifyData(SignatureAlgorithm algorithm, byte[] data, byte[] signature) Verifies a signature against the raw data using the configured key.CryptographyClient.verifyData(SignatureAlgorithm algorithm, byte[] data, byte[] signature, com.azure.core.util.Context context) Verifies a signature against the raw data using the configured key. -
Uses of SignatureAlgorithm in com.azure.security.keyvault.keys.cryptography.models
Fields in com.azure.security.keyvault.keys.cryptography.models declared as SignatureAlgorithmModifier and TypeFieldDescriptionstatic final SignatureAlgorithmSignatureAlgorithm.ES256Static value ES256 for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.ES256KStatic value ES256K for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.ES384Static value ES384 for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.ES512Static value ES512 for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.PS256Static value PS256 for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.PS384Static value PS384 for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.PS512Static value PS512 for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.RS256Static value RS256 for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.RS384Static value RS384 for SignatureAlgorithm.static final SignatureAlgorithmSignatureAlgorithm.RS512Static value RS512 for SignatureAlgorithm.Methods in com.azure.security.keyvault.keys.cryptography.models that return SignatureAlgorithmModifier and TypeMethodDescriptionstatic SignatureAlgorithmSignatureAlgorithm.fromString(String name) Creates or finds a SignatureAlgorithm from its string representation.SignResult.getAlgorithm()Get the signature algorithm used to create the signature.VerifyResult.getAlgorithm()Get the signature algorithm used to verify the signature.Methods in com.azure.security.keyvault.keys.cryptography.models that return types with arguments of type SignatureAlgorithmModifier and TypeMethodDescriptionstatic Collection<SignatureAlgorithm>SignatureAlgorithm.values()Constructors in com.azure.security.keyvault.keys.cryptography.models with parameters of type SignatureAlgorithmModifierConstructorDescriptionSignResult(byte[] signature, SignatureAlgorithm algorithm, String keyId) Creates the instance of SignResult holding the sign operation response details.VerifyResult(Boolean isValid, SignatureAlgorithm algorithm, String keyId) Creates the instance of Verify Result holding the verification response information.