Uses of Class
java.security.Signature
| Package | Description |
|---|---|
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| org.apache.harmony.security.provider.crypto | |
| org.bouncycastle.jcajce | |
| org.conscrypt |
-
Uses of Signature in java.security
Methods in java.security that return Signature Modifier and Type Method Description static SignatureSignature. getInstance(String algorithm)Returns a new instance ofSignaturethat utilizes the specified algorithm.static SignatureSignature. getInstance(String algorithm, String provider)Returns a new instance ofSignaturethat utilizes the specified algorithm from the specified provider.static SignatureSignature. getInstance(String algorithm, Provider provider)Returns a new instance ofSignaturethat utilizes the specified algorithm from the specified provider.Methods in java.security with parameters of type Signature Modifier and Type Method Description booleanSignedObject. verify(PublicKey verificationKey, Signature verificationEngine)Indicates whether the contained signature for the encapsulated object is valid.Constructors in java.security with parameters of type Signature Constructor Description SignedObject(Serializable object, PrivateKey signingKey, Signature signingEngine)Constructs a new instance ofSignedObjectwith the target object, the private key and the engine to compute the signature. -
Uses of Signature in org.apache.harmony.security.provider.crypto
Subclasses of Signature in org.apache.harmony.security.provider.crypto Modifier and Type Class Description classSHA1withDSA_SignatureImpl -
Uses of Signature in org.bouncycastle.jcajce
Methods in org.bouncycastle.jcajce that return Signature Modifier and Type Method Description SignatureDefaultJcaJceHelper. createSignature(String algorithm)SignatureJcaJceHelper. createSignature(String algorithm)SignatureNamedJcaJceHelper. createSignature(String algorithm)SignatureProviderJcaJceHelper. createSignature(String algorithm) -
Uses of Signature in org.conscrypt
Subclasses of Signature in org.conscrypt Modifier and Type Class Description classOpenSSLSignatureImplements the subset of the JDK Signature interface needed for signature verification using OpenSSL.static classOpenSSLSignature.MD5RSAstatic classOpenSSLSignature.SHA1DSAstatic classOpenSSLSignature.SHA1ECDSAstatic classOpenSSLSignature.SHA1RSAstatic classOpenSSLSignature.SHA256ECDSAstatic classOpenSSLSignature.SHA256RSAstatic classOpenSSLSignature.SHA384ECDSAstatic classOpenSSLSignature.SHA384RSAstatic classOpenSSLSignature.SHA512ECDSAstatic classOpenSSLSignature.SHA512RSAclassOpenSSLSignatureRawRSAImplements the JDK Signature interface needed for RAW RSA signature generation and verification using OpenSSL.