Package | Description |
---|---|
java.security |
Provides the classes and interfaces for the security framework.
|
Modifier and Type | Method and Description |
---|---|
static Signature |
Signature.getInstance(String algorithm)
Generates a Signature object that implements the specified digest
algorithm.
|
static 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.
|
static 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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
SignedObject(Serializable object,
PrivateKey signingKey,
Signature signingEngine)
Constructs a SignedObject from any Serializable object.
|
Copyright © 2013 CableLabs. All rights reserved.