public static class PrivateKeyCallback.DigestRequest extends Object implements PrivateKeyCallback.Request
Constructor and Description |
---|
PrivateKeyCallback.DigestRequest(byte[] digest,
String algorithm)
Constructs a DigestRequest with a digest value and algorithm
identifier.
|
public PrivateKeyCallback.DigestRequest(byte[] digest, String algorithm)
The digest of the certificate whose private key is returned
must match the provided digest. The certificate digest is computed
by applying the specified algorithm to the bytes of the certificate.
For example:
MessageDigest.getInstance(algorithm).digest(cert.getEncoded())
. The corresponding certificate chain for the private key is
also returned.
If the digest or algorithm parameters are null,
the handler of the callback relies on its own defaults.
digest
- The digest value to use to select the corresponding
certificate and private key (or null).algorithm
- A string value identifying the digest algorithm.
The value passed to this parameter may be null. If it is not null,
it must conform to the requirements for the algorithm parameter of
java.security.MessageDigest.getInstance()
.public byte[] getDigest()
public String getAlgorithm()
Copyright © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.