org.mozilla.jss.pkix.cert
public class SubjectKeyIdentifier extends Extension
Extensions are addiitonal attributes which can be inserted in a X509 v3 certificate. For example a "Driving License Certificate" could have the driving license number as a extension.
Extensions are represented as a sequence of the extension identifier (Object Identifier), a boolean flag stating whether the extension is to be treated as being critical and the extension value itself (this is again a DER encoding of the extension value).
See Also: Extension
| Nested Class Summary | |
|---|---|
| static class | SubjectKeyIdentifier.Template |
| Constructor Summary | |
|---|---|
| SubjectKeyIdentifier(OCTET_STRING keyIdentifier)
Constructs an SubjectKeyIdentifier from its components.
| |
| SubjectKeyIdentifier(boolean critical, OCTET_STRING keyIdentifier) | |
Parameters: keyIdentifier must not be null.