File tree Expand file tree Collapse file tree 3 files changed +47
-113
lines changed Expand file tree Collapse file tree 3 files changed +47
-113
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = """
44Pure Rust implementation of SLH-DSA (aka SPHINCS+) as described in the
55FIPS-205 standard
66"""
7- version = " 0.1.0 "
7+ version = " 0.2.0-pre "
88edition = " 2021"
99rust-version = " 1.81"
1010license = " Apache-2.0 OR MIT"
@@ -15,15 +15,15 @@ categories = ["cryptography"]
1515keywords = [" crypto" , " signature" ]
1616
1717[dependencies ]
18- hybrid-array = { version = " 0.2.0-rc.8 " , features = [" extra-sizes" ] }
18+ hybrid-array = { version = " 0.2.0-rc.10 " , features = [" extra-sizes" ] }
1919typenum = { version = " 1.17.0" , features = [" const-generics" ] }
20- sha3 = { version = " 0.10.8 " , default-features = false }
20+ sha3 = { version = " =0.11.0-pre.4 " , default-features = false }
2121zerocopy = { version = " 0.7.34" , features = [" derive" ] }
2222rand_core = { version = " 0.6.4" }
2323signature = { version = " 2.3.0-pre.4" , features = [" rand_core" ] }
24- hmac = " 0.12.1 "
25- sha2 = { version = " 0.10.8 " , default-features = false }
26- digest = " 0.10.7 "
24+ hmac = " =0.13.0-pre.4 "
25+ sha2 = { version = " =0.11.0-pre.4 " , default-features = false }
26+ digest = " =0.11.0-pre.9 "
2727
2828[dev-dependencies ]
2929hex-literal = " 0.4.1"
@@ -33,9 +33,9 @@ quickcheck = "1"
3333quickcheck_macros = " 1"
3434proptest = " 1.4.0"
3535criterion = " 0.5"
36- aes = " 0.8.4 "
37- cipher = " 0.4.4 "
38- ctr = " 0.9 .2"
36+ aes = " =0.9.0-pre.2 "
37+ cipher = " =0.5.0-pre.7 "
38+ ctr = " =0.10.0-pre .2"
3939rand_core = " 0.6.4"
4040paste = " 1.0.15"
4141rand = " 0.8.5"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use crate::{
99 xmss:: XmssParams , ParameterSet ,
1010} ;
1111use crate :: { PkSeed , SkPrf , SkSeed } ;
12- use digest:: { Digest , Mac } ;
12+ use digest:: { Digest , KeyInit , Mac } ;
1313use hmac:: Hmac ;
1414use hybrid_array:: { Array , ArraySize } ;
1515use sha2:: { Sha256 , Sha512 } ;
You can’t perform that action at this time.
0 commit comments