Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions rust-symcrypt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ RSA:
- PSS ( Sign, Verify )
- OAEP ( Encrypt, Decrypt )

ML-KEM:
- ML-KEM-512
- ML-KEM-768
- ML-KEM-1024

**Note**: `Md5` and `Sha1`, and `PKCS1 Encrypt/Decrypt` are considered weak crypto, and are only added for interop purposes.
To enable either `Md5` or `Sha1`, or `Pkcs1 Encrypt/Decrypt` pass the `md5` or `sha1` or `pkcs1-encrypt-decrypt` flag into your `Cargo.toml`.

Expand Down
1 change: 1 addition & 0 deletions rust-symcrypt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ pub mod gcm;
pub mod hash;
pub mod hkdf;
pub mod hmac;
pub mod mlkem;
Comment thread
nnmkhang marked this conversation as resolved.
pub mod rsa;
pub mod sp800_108;

Expand Down
Loading
Loading