1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
= API Changes =
== Deprecate getSubjectDN() and getIssuerDN() in X509CertImpl ==
The `getSubjectDN()` and `getIssuerDN()` in `org.mozilla.jss.netscape.security.x509.X509CertImpl` have been deprecated.
Use `getSubjectName()` and `getIssuerName()` or `getSubjectX500Principal​()` and `getIssuerX500Principal​()` instead.
== PKCS11Constants Changes ==
The `PKCS11Constants` class has been updated to include the new constants introduced in NSS 3.73:
* `CKO_NSS_VALIDATION`
* `CKA_NSS_VALIDATION_TYPE`
* `CKA_NSS_VALIDATION_VERSION`
* `CKA_NSS_VALIDATION_LEVEL`
* `CKA_NSS_VALIDATION_MODULE_ID`
NOTE: These constants should only be used with NSS 3.73 or later.
|