Uses of Class
com.azure.security.keyvault.keys.cryptography.models.SignatureAlgorithm
-
Packages that use SignatureAlgorithm Package Description com.azure.security.keyvault.keys.cryptography Package containing classes for creatingCryptographyAsyncClientandCryptographyClientto perform cryptography operations.com.azure.security.keyvault.keys.cryptography.models 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 SignatureAlgorithm Modifier and Type Method Description Mono<SignResult>CryptographyAsyncClient. sign(SignatureAlgorithm algorithm, byte[] digest)Creates a signature from a digest using the configured key.SignResultCryptographyClient. sign(SignatureAlgorithm algorithm, byte[] digest)Creates a signature from a digest using the configured key.SignResultCryptographyClient. sign(SignatureAlgorithm algorithm, byte[] digest, com.azure.core.util.Context context)Creates a signature from a digest using the configured key.Mono<SignResult>CryptographyAsyncClient. signData(SignatureAlgorithm algorithm, byte[] data)Creates a signature from the raw data using the configured key.SignResultCryptographyClient. signData(SignatureAlgorithm algorithm, byte[] data)Creates a signature from the raw data using the configured key.SignResultCryptographyClient. signData(SignatureAlgorithm algorithm, byte[] data, com.azure.core.util.Context context)Creates a signature from the raw data using the configured key.Mono<VerifyResult>CryptographyAsyncClient. verify(SignatureAlgorithm algorithm, byte[] digest, byte[] signature)Verifies a signature using the configured key.VerifyResultCryptographyClient. verify(SignatureAlgorithm algorithm, byte[] digest, byte[] signature)Verifies a signature using the configured key.VerifyResultCryptographyClient. verify(SignatureAlgorithm algorithm, byte[] digest, byte[] signature, com.azure.core.util.Context context)Verifies a signature using the configured key.Mono<VerifyResult>CryptographyAsyncClient. verifyData(SignatureAlgorithm algorithm, byte[] data, byte[] signature)Verifies a signature against the raw data using the configured key.VerifyResultCryptographyClient. verifyData(SignatureAlgorithm algorithm, byte[] data, byte[] signature)Verifies a signature against the raw data using the configured key.VerifyResultCryptographyClient. 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 SignatureAlgorithm Modifier and Type Field Description static SignatureAlgorithmSignatureAlgorithm. ES256Static value ES256 for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. ES256KStatic value ES256K for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. ES384Static value ES384 for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. ES512Static value ES512 for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. PS256Static value PS256 for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. PS384Static value PS384 for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. PS512Static value PS512 for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. RS256Static value RS256 for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. RS384Static value RS384 for SignatureAlgorithm.static SignatureAlgorithmSignatureAlgorithm. RS512Static value RS512 for SignatureAlgorithm.Methods in com.azure.security.keyvault.keys.cryptography.models that return SignatureAlgorithm Modifier and Type Method Description static SignatureAlgorithmSignatureAlgorithm. fromString(String name)Creates or finds a SignatureAlgorithm from its string representation.SignatureAlgorithmSignResult. getAlgorithm()Get the signature algorithm used to create the signature.SignatureAlgorithmVerifyResult. 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 SignatureAlgorithm Modifier and Type Method Description static Collection<SignatureAlgorithm>SignatureAlgorithm. values()Constructors in com.azure.security.keyvault.keys.cryptography.models with parameters of type SignatureAlgorithm Constructor Description SignResult(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.
-