feat: Use chacha implementation from rust crypto instead of sodium

This commit is contained in:
Karolin Varner
2024-01-13 22:53:13 +01:00
committed by Karolin Varner
parent e42f90b048
commit 0789c60602
6 changed files with 246 additions and 1 deletions

View File

@@ -60,3 +60,4 @@ anyhow = { version = "1.0.75", features = ["backtrace", "std"] }
mio = { version = "0.8.9", features = ["net", "os-poll"] }
libsodium-sys-stable= { version = "1.20.4", features = ["use-pkg-config"] }
oqs-sys = { version = "0.8", default-features = false, features = ['classic_mceliece', 'kyber'] }
chacha20poly1305 = { version = "0.10.1", default-features = false, features = [ "std", "heapless" ] }