A whimsical STROBE based encryption protocol
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Ensure chacha20 is zeroized for benchmark comparison

+3 -1
+2
Cargo.lock
··· 106 106 "cfg-if", 107 107 "cipher", 108 108 "cpufeatures", 109 + "zeroize", 109 110 ] 110 111 111 112 [[package]] ··· 118 119 "chacha20", 119 120 "cipher", 120 121 "poly1305", 122 + "zeroize", 121 123 ] 122 124 123 125 [[package]]
+1 -1
Cargo.toml
··· 37 37 [dev-dependencies] 38 38 getrandom = { version = "0.4.2", features = ["sys_rng"] } 39 39 aead = { version = "0.6.0-rc.10", features = ["alloc"] } 40 - chacha20poly1305 = "=0.11.0-rc.3" 40 + chacha20poly1305 = { version = "=0.11.0-rc.3", features = ["zeroize"] } 41 41 criterion = { version ="0.8.2", features = ["html_reports"] } 42 42 43 43 [[bench]]