Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.security.Signature

Uses of Signature in java.security
 

Subclasses of Signature in java.security
(package private)  class DummySignature
           
 

Methods in java.security that return Signature
static Signature Signature.getInstance(java.lang.String algorithm)
          Returns an instance of Signature representing the specified signature.
static Signature Signature.getInstance(java.lang.String algorithm, java.lang.String provider)
          Returns an instance of Signature representing the specified signature from the named provider.
static Signature Signature.getInstance(java.lang.String algorithm, Provider provider)
          Returns an instance of Signature representing the specified signature from the specified Provider.
 

Methods in java.security with parameters of type Signature
 boolean SignedObject.verify(PublicKey verificationKey, Signature verificationEngine)
          Verifies the encapsulated digital signature by checking that it was generated by the owner of a designated public key.
 

Constructors in java.security with parameters of type Signature
SignedObject(java.io.Serializable object, PrivateKey signingKey, Signature signingEngine)
          Constructs a new instance of SignedObject from a java.io.Serializable object.