Repo of no-std crates for my personal embedded projects
0
fork

Configure Feed

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

Remove alloc requirement from crypto crate

+2 -2
+2 -2
sachy-crypto/src/lib.rs
··· 9 9 }; 10 10 use elliptic_curve::subtle::ConstantTimeEq; 11 11 12 - extern crate alloc; 13 - 14 12 /// Error type. 15 13 /// 16 14 /// This type is deliberately opaque as to avoid potential side-channel ··· 314 312 use chacha20poly1305::aead::Buffer; 315 313 use dhkem::Generate; 316 314 use elliptic_curve::array::Array; 315 + 316 + extern crate alloc; 317 317 318 318 use super::*; 319 319