PyKCS11 Versions Save

PKCS#11 Wrapper for Python

1.5.14

3 months ago

1.5.14 - February 2024, Ludovic Rousseau

  • fix build using swig 4.2.0

Full Changelog: https://github.com/LudovicRousseau/PyKCS11/compare/1.5.13...1.5.14

https://blog.apdu.fr/posts/2024/02/new-version-of-pykcs11-1514/

1.5.13

4 months ago

1.5.13 - January 2024, Ludovic Rousseau

  • fix issue between Python 3.12 garbage collector and C_Finalize()
  • Modernize use of setup.py
  • Check swig is installed
  • remove unused files
  • minor improvements

Full Changelog: https://github.com/LudovicRousseau/PyKCS11/compare/1.5.12...1.5.13

https://blog.apdu.fr/posts/2024/01/new-pykcs11-1513-available/

1.5.12

1 year ago

1.5.12 - April 2023, Ludovic Rousseau

  • add setAttributeValue()
  • minor improvements

Full Changelog: https://github.com/LudovicRousseau/PyKCS11/compare/1.5.11...1.5.12

1.5.11

1 year ago

1.5.11 - Septembre 2022, Ludovic Rousseau

  • add deriveKey() with CKM_ECDH1_DERIVE and CK_ECDH1_DERIVE_PARAMS
  • support pSourceData in OAEP params
  • remove use of (deprecated) distutils
  • samples: port to Python 3
  • fix code coverage generation

What's Changed

New Contributors

Full Changelog: https://github.com/LudovicRousseau/PyKCS11/compare/1.5.10...1.5.11

1.5.10

3 years ago

1.5.10 - December 2020, Ludovic Rousseau

  • Add CKH_* constants
  • CKA_HW_FEATURE_TYPE attribute value is a number
  • Makefile: use python3 by default
  • minor improvements

1.5.9

3 years ago

1.5.9 - July 2020, Ludovic Rousseau

  • call C_GetSlotList() with a NULL parameter to correctly initialize some PKCS#11 lib conforming to PKCS#11 version 2.40.

1.5.8

4 years ago

1.5.8 - May 2020, Ludovic Rousseau

  • CKA_ALWAYS_AUTHENTICATE is boolean
  • CKM_VENDOR_DEFINED_...
    • Fix name: use CKM_ instead of CKR_ prefix
    • Use an explicit hex prefix: CKM_VENDOR_DEFINED_0x45
  • Add missing CKM_, CKA_, CKF_, CKD_, CKK_, CKN_, CKO_, CKR_ from PKCS#11 v3.0
  • fix test_asymetric.py for RSA_PSS_Mechanism

1.5.3

5 years ago

1.5.3 - October 2018, Ludovic Rousseau

  • Do not fail when converting a UTF-8 string
  • Documentation: convert from Epydoc to Sphinx
  • some minor improvements