Skip to content

Latest commit

 

History

History
164 lines (125 loc) · 5.58 KB

File metadata and controls

164 lines (125 loc) · 5.58 KB

Changelog

All notable changes to this project should be documented in this file.

[Unreleased]

What Changed

  • The project was reorganized in a workspace with several crates
  • Added support for SP800 ECDH KDF variant
  • PKCS#11 3.2 is now the default interface
  • Implemented simple KDF functions for key concatenation and XOR of a base key with provided data.

2025-06-09

This release adds support for PQC algorithms, comprehensive doc string coverage and a few important compatibility fixes in the database format and key wrapping data formats.

What Changed

2025-04-14

This release fixes several issues found by 3rd party testing, and adds preliminary support for PKCS#11 3.2 APIs. The PKCS#11 3.2 API allows us to add Post Quantum algorithms. This release adds support for the first PQ algorithm (ML-KEM). Both the pkcs#11 3.2 API and ML-KEM are optional features and can be both enabled by passing --feature mlkem at build time.

What Changed

2025-03-11

What Changed

This is the first release.

Kryoptic implements most of the functions available in the PKCS#11 3.1 spec with the exception of some message based operations.

The initial version supports both symmetric and asymmetric algorithms. Asymmetric Algorithms:

  • ECDSA
  • EDDSA
  • ECDH
  • RSA

Symmetric Algorithms:

  • AES

Hashes and HMAC:

  • SHA1
  • SHA2 (224, 256, 384, 512, 512/224, 512/256)
  • SHA3 (224, 256, 384, 512)

Key derivation functions:

  • PBKDF2
  • HKDF
  • SP108
  • SSHKDF
  • TLSKDF

The token supports 2 main database types:

  • sqlitedb: this is the default and the recommended option
  • nssdb: a NSS softokn database driver, which allows to reuse an existing token (this is the same format used by the Firefox security token)

Kryoptic uses OpenSSL (3.2+) for most of the cryptography primitives. A static build option is available with libcrypto.a (or libfips.a with the fips feature), or dynamic linking to the system libcrypto.so (default) is available.

Unimplemented functions are noted in the source code and can be easily explored by building the documentation. There is a Makefile file to provide shortcut commands for common tasks, use make docs to build documentation that includes non public interfaces.