Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
1fccbd6
restructure modules
tbrezot Jan 8, 2026
50b43a0
WIP: implement wrapper around Covercrypt
tbrezot Jan 15, 2026
3c8e121
use crypto_core providers
tbrezot Jan 16, 2026
e3162a2
fix lack of ZeroizeOnDrop on MlKem implementation
tbrezot Jan 16, 2026
b65a74c
fix: add ZeroizeOnDrop for abe::DKey
tbrezot Jan 16, 2026
8c452f5
add test for the ABE variant of the ConfigurableKEM
tbrezot Jan 16, 2026
a5a5191
revert naming breaking change
tbrezot Jan 19, 2026
35bc0ef
revert module-tree breaking change
tbrezot Jan 19, 2026
4834089
revert EncryptionHint-member breaking change
tbrezot Jan 19, 2026
2e34577
fix: upgrade CryptoCore
tbrezot Jan 20, 2026
63cde14
add hybridized implementation
tbrezot Jan 20, 2026
d1a8aec
enforce KEM semantics across `ConfigurableKEM` variants
tbrezot Jan 20, 2026
ada7c4c
upgrade CryptoCore, use OpenSSL provider for P256 and remove base
tbrezot Jan 25, 2026
da75377
cleanup lib.rs
tbrezot Feb 5, 2026
2a9aeea
expose MLKEM
tbrezot Feb 8, 2026
24da8bd
derive Debug and Clone for MlKem implementations
tbrezot Feb 10, 2026
467823f
implement Serializable for AccessPolicy
tbrezot Feb 10, 2026
7fdf7c3
move the configurable KEM implem back to the CoverCrypt repository
tbrezot Feb 11, 2026
7fc73e5
add tag to discriminate USK vs MSK
tbrezot Feb 11, 2026
ec84ead
improve generic implementation
tbrezot Feb 11, 2026
036e7a0
implement Serializable for configurable-KEM objects
tbrezot Feb 11, 2026
78f2ab4
chore: update crypt_core to develop
Manuthor Feb 12, 2026
6fd97bc
expose constructor for configurable KEM objects
tbrezot Feb 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
toolchain: 1.89.0
components: rustfmt, clippy
- name: Run test script
run: |
Expand All @@ -21,7 +21,7 @@ jobs:
uses: Cosmian/reusable_workflows/.github/workflows/cargo-publish.yml@develop
if: startsWith(github.ref, 'refs/tags/')
with:
toolchain: stable
toolchain: 1.89.0
secrets: inherit
cleanup:
needs:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*nix*
/*.sh
/.vscode
Cargo.lock
**/.#*
**/#*#
**/*~
Loading