fixed test

This commit is contained in:
Maxime Van Hees
2025-09-19 10:35:08 +02:00
parent 8ab841f68c
commit 151a6ffbfa
4 changed files with 17 additions and 11 deletions

View File

@@ -77,7 +77,7 @@ pub enum Cmd {
AgeSign(String, String), // signing_secret, message
AgeVerify(String, String, String), // verify_pub, message, signature_b64
// NEW: persistent named-key commands
// Persistent named-key commands
AgeKeygen(String), // name
AgeSignKeygen(String), // name
AgeEncryptName(String, String), // name, message
@@ -86,7 +86,7 @@ pub enum Cmd {
AgeVerifyName(String, String, String), // name, message, signature_b64
AgeList,
// SYM (symmetric) commands — stateless (Phase 1)
// SYM (symmetric) commands — stateless
// Raw 32-byte key provided as base64; ciphertext returned as base64
SymKeygen,
SymEncrypt(String, String), // key_b64, message