added the crypto crate with tests and function

This commit is contained in:
2026-07-13 16:27:59 -05:00
parent d9cdea232c
commit c9907b7102
3 changed files with 240 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
[package]
name = "crypto"
version = "0.1.0"
edition = "2024"
[dependencies]
chacha20poly1305 = { version = "0.11", features = ["getrandom"] }
rand = "0.10"