crypt_guard 2.0.3

CryptGuard is a post-quantum cryptography framework with NIST FIPS 203/204/205 (ML-KEM, ML-DSA, SLH-DSA) plus legacy Kyber/Falcon/Dilithium, combined with AES and XChaCha20.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error[E0599]: no method named `seal` found for struct `EncryptorBuilder<WithRecipient, MissingPlaintext, crypt_guard::MlKem768>` in the current scope
 --> tests/ui/sealer_missing_plaintext.rs:7:10
  |
5 |       let _ = Encryptor::<MlKem768, XChaCha20Poly1305>::new()
  |  _____________-
6 | |         .recipient(vec![0u8; 32])
7 | |         .seal();
  | |         -^^^^ method not found in `EncryptorBuilder<WithRecipient, MissingPlaintext, crypt_guard::MlKem768>`
  | |_________|
  |
  |
  = note: the method was found for `EncryptorBuilder<WithRecipient, WithPlaintext, K, A>`