public static class PrivateKeyCallback.SubjectKeyIDRequest extends java.lang.Object implements PrivateKeyCallback.Request
Request type for private keys that are identified via a SubjectKeyID
| Modifier and Type | Field and Description |
|---|---|
private byte[] |
subjectKeyID |
| Constructor and Description |
|---|
SubjectKeyIDRequest(byte[] keyID)
Construct a SubjectKeyIDRequest with an subjectKeyID.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getSubjectKeyID()
Get the subjectKeyID.
|
public SubjectKeyIDRequest(byte[] keyID)
Construct a SubjectKeyIDRequest with an subjectKeyID.
The subjectKeyID is used to directly identify the private key to be returned. The corresponding certificate chain for the private key is also returned.
If the subjectKeyID is null, the handler of the callback relies on its own default.
keyID - Identifier for the private key, or null.