public static class PrivateKeyCallback.DigestRequest extends Object implements PrivateKeyCallback.Request
Request type for private keys that are identified using a certificate digest or thumbprint.
Constructor and Description |
---|
DigestRequest(byte[] digest,
String algorithm)
Constructs a DigestRequest with a digest value and algorithm identifier.
|
Modifier and Type | Method and Description |
---|---|
String |
getAlgorithm()
Get the algorithm identifier.
|
byte[] |
getDigest()
Get the digest value.
|
public DigestRequest(byte[] digest, String algorithm)
Constructs a DigestRequest with a digest value and algorithm identifier.
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()
Get the digest value.
public String getAlgorithm()
Get the algorithm identifier.
Copyright © 2017 JBoss by Red Hat. All rights reserved.