https://github.com/kazuakiishiguro/baby-mlkem
Toy implementation of ML-KEM
https://github.com/kazuakiishiguro/baby-mlkem
keccak ml-kem post-quantum-cryptography sha3
Last synced: about 2 months ago
JSON representation
Toy implementation of ML-KEM
- Host: GitHub
- URL: https://github.com/kazuakiishiguro/baby-mlkem
- Owner: kazuakiishiguro
- Created: 2025-01-07T22:09:44.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-17T08:22:53.000Z (2 months ago)
- Last Synced: 2025-02-17T08:33:40.365Z (2 months ago)
- Topics: keccak, ml-kem, post-quantum-cryptography, sha3
- Language: C
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# baby-mlkem
A toy implementation of ML-KEM (formaly knows as kyber), a Module-Lattice-Based Key-Encapsulation Mechanism Standard ([FIPS203](https://doi.org/10.6028/NIST.FIPS.203)). This implementation is written in pure C with no external dependencies and is inspired by the blog post [Enough Polynomials and Linear Algebra to Implement Kyber](https://words.filippo.io/dispatches/kyber-math/).
## Test
To run tests for the implementation, execute the following command:
```bash
make test
```