Uses of Class java.security.Signature

Uses in package java.security

Constructors with parameter type java.security.Signature

SignedObject.SignedObject(Serializable object, PrivateKey signingKey, Signature signingEngine)
Constructs a SignedObject from any Serializable object.

Methods with parameter type java.security.Signature

boolean
SignedObject.verify(PublicKey verificationKey, Signature verificationEngine)
Verifies that the signature in this SignedObject is the valid signature for the object stored inside, with the given verification key, using the designated verification engine.

Methods with return type java.security.Signature

Signature
Generates a Signature object that implements the specified digest algorithm.
Signature
Signature.getInstance(String algorithm, String provider)
Generates a Signature object implementing the specified algorithm, as supplied from the specified provider, if such an algorithm is available from the provider.
Signature
Signature.getInstance(String algorithm, Provider provider)
Generates a Signature object implementing the specified algorithm, as supplied from the specified provider, if such an algorithm is available from the provider.