Releases: cryptosense/pkcs11
Releases · cryptosense/pkcs11
1.0.1
v1.0.0
CHANGES:
2019-11-21
Additions
- Add a new
initialize_nss
function topkcs11-driver
to perform a C_Initialize call with the extra parameters that NSS requires (see https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/PKCS11/Module_Specs for more information)
Changes
- (Breaking) Rename
P11_driver.Make
toP11_driver.Wrap_low_level_bindings
- (Breaking) Rename
Pkcs11.RAW
toPkcs11.LOW_LEVEL_BINDINGS
- (Breaking) Rename
Pkcs11.S
toPkcs11.LOW_LEVEL_WRAPPER
- (Breaking) Rename
Pkcs11.Make
toPkcs11.Wrap_low_level_bindings
v0.18.0
v0.17.1
v0.17.0
v0.16.0
v0.16.0 2018-04-05
Breaking changes:
- Encode
CKA_ID
data as an hex encoded JSON string. (#101)
New features:
- Add all 2.40 mechanism types. (#99)
Deprecations:
- Deprecate mechanism kinds, attribute kinds, and
P11_key_attributes
. (#98) - Deprecate the "stubs" load mode. This corresponds to the
--indirect
command
line argument. "auto" stays the recommended default. (#100)
Refactoring:
- Rework
P11_attribute
internals to userepr
fromCK_ATTRIBUTE
. (#102)
v0.15.0
v0.14.0
v0.14.0 2018-01-12
Breaking changes:
load_driver
: "dll" is non-named so that it erases optional arguments. (#92)- rename
use_get_function_list
toload_mode
and addP11.Load_mode
to
describe what arguments it can have. Also delete unused modes. (#93)
New features:
- Bind the
C_Digest
function asdigest
. (#91)