1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
//! Hashing
//!
//! This module implements the SHA 1 and SHA 2 hash functions.
//!
//! # Usage
//! This module provides two APIs
//!
//! ## Stateful Hashing
//! ```rust
//! use hacl::digest::{Digest, Algorithm};
//!
//! let expected_digest_256 = [
//! 0xa5, 0x35, 0xf2, 0x6a, 0xff, 0xbc, 0x1f, 0x08, 0x73, 0xdb, 0x15, 0x15, 0x9d, 0xce, 0xbf,
//! 0x25, 0x99, 0x64, 0xbe, 0x42, 0xde, 0xa8, 0x4d, 0x29, 0x00, 0x38, 0x4b, 0xee, 0x15, 0x09,
//! 0xe4, 0x00,
//! ];
//! let expected_digest_512 = [
//! 0x36, 0x97, 0x36, 0x7c, 0xc9, 0x1e, 0xda, 0xa7, 0x6d, 0xb8, 0x03, 0x39, 0x61, 0x5f, 0xc2,
//! 0x12, 0xe1, 0x5e, 0x64, 0x3e, 0x31, 0x30, 0xf7, 0x1f, 0x28, 0xd0, 0x3f, 0x34, 0x3d, 0xf4,
//! 0x88, 0x0a, 0xd3, 0x6c, 0x63, 0xe5, 0x35, 0x1f, 0x56, 0xe0, 0xf7, 0xe0, 0x4c, 0x24, 0x96,
//! 0xc0, 0xb3, 0x6b, 0xcf, 0x7c, 0x5d, 0xcb, 0xf3, 0x5e, 0x38, 0xe9, 0xbb, 0x44, 0xf8, 0xa0,
//! 0xc2, 0x83, 0x42, 0x4e,
//! ];
//!
//! let data = b"evercrypt-rust bindings";
//!
//! let mut digest_256 = Digest::new(Algorithm::Sha256).unwrap();
//! if digest_256.update(data).is_err() {
//! panic!("Error hashing.");
//! }
//! let digest_256_result = match digest_256.finish() {
//! Ok(d) => d,
//! Err(e) => panic!("Finish digest failed.\n{:?}", e),
//! };
//!
//! let mut digest_512 = Digest::new(Algorithm::Sha512).unwrap();
//! if digest_512.update(data).is_err() {
//! panic!("Error hashing.");
//! }
//! let digest_512_result = match digest_512.finish() {
//! Ok(d) => d,
//! Err(e) => panic!("Finish digest failed.\n{:?}", e),
//! };
//!
//! assert_eq!(&digest_256_result[..], &expected_digest_256[..]);
//! assert_eq!(&digest_512_result[..], &expected_digest_512[..]);
//! ```
//!
//! ## Single-shot API
//! ```rust
//! use hacl::digest::{self, Algorithm};
//!
//! let expected_digest_256 = [
//! 0xa5, 0x35, 0xf2, 0x6a, 0xff, 0xbc, 0x1f, 0x08, 0x73, 0xdb, 0x15, 0x15, 0x9d, 0xce, 0xbf,
//! 0x25, 0x99, 0x64, 0xbe, 0x42, 0xde, 0xa8, 0x4d, 0x29, 0x00, 0x38, 0x4b, 0xee, 0x15, 0x09,
//! 0xe4, 0x00,
//! ];
//! let expected_digest_512 = [
//! 0x36, 0x97, 0x36, 0x7c, 0xc9, 0x1e, 0xda, 0xa7, 0x6d, 0xb8, 0x03, 0x39, 0x61, 0x5f, 0xc2,
//! 0x12, 0xe1, 0x5e, 0x64, 0x3e, 0x31, 0x30, 0xf7, 0x1f, 0x28, 0xd0, 0x3f, 0x34, 0x3d, 0xf4,
//! 0x88, 0x0a, 0xd3, 0x6c, 0x63, 0xe5, 0x35, 0x1f, 0x56, 0xe0, 0xf7, 0xe0, 0x4c, 0x24, 0x96,
//! 0xc0, 0xb3, 0x6b, 0xcf, 0x7c, 0x5d, 0xcb, 0xf3, 0x5e, 0x38, 0xe9, 0xbb, 0x44, 0xf8, 0xa0,
//! 0xc2, 0x83, 0x42, 0x4e,
//! ];
//!
//! let data = b"evercrypt-rust bindings";
//!
//! let digest_256 = digest::hash(Algorithm::Sha256, data);
//! let digest_512 = digest::hash(Algorithm::Sha512, data);
//!
//! assert_eq!(&digest_256[..], &expected_digest_256[..]);
//! assert_eq!(&digest_512[..], &expected_digest_512[..]);
//!
//! let digest_256 = digest::sha256(data);
//! let digest_512 = digest::sha512(data);
//!
//! assert_eq!(&digest_256[..], &expected_digest_256[..]);
//! assert_eq!(&digest_512[..], &expected_digest_512[..]);
//! ```
//!
//! ## SHA 3
//! ```rust
//! use hacl::digest::{self, Algorithm};
//!
//! let data = b"evercrypt-rust bindings";
//! let expected_digest_3_256 = [
//! 0x49, 0x4b, 0xc2, 0xea, 0x73, 0x43, 0x4f, 0x88, 0x62, 0x56, 0x13, 0x39, 0xda, 0x1a, 0x6d,
//! 0x58, 0x05, 0xee, 0x34, 0x4b, 0x67, 0x5d, 0x18, 0xfb, 0x9a, 0x81, 0xca, 0x65, 0xa7, 0x8f,
//! 0xeb, 0x6e,
//! ];
//! let expected_digest_3_512 = [
//! 0x7a, 0xaa, 0x97, 0x5c, 0x6b, 0x15, 0x5b, 0x55, 0xd3, 0x7b, 0xa6, 0x99, 0x3f, 0x7e, 0x14,
//! 0xd9, 0x8c, 0x28, 0x0d, 0x2b, 0x2f, 0xc2, 0x4a, 0xa7, 0x84, 0x07, 0xcf, 0x15, 0x2d, 0x0a,
//! 0xca, 0xbc, 0x32, 0xf2, 0x11, 0xf4, 0x64, 0x30, 0x19, 0x0a, 0x35, 0x26, 0x94, 0x76, 0x84,
//! 0x2a, 0x1f, 0x17, 0x41, 0xad, 0x46, 0x06, 0xf6, 0xc8, 0xc6, 0xad, 0x8d, 0x02, 0x2e, 0x85,
//! 0xb4, 0x9d, 0x6b, 0xd7,
//! ];
//!
//! assert_eq!(digest::hash(Algorithm::Sha3_256, data), expected_digest_3_256);
//! assert_eq!(
//! digest::hash(Algorithm::Sha3_512, data)[..],
//! expected_digest_3_512[..]
//! );
//! ```
//!
//! ## SHAKE
//! ```rust
//! use hacl::digest::{self, Algorithm};
//!
//! let data = b"evercrypt-rust bindings";
//! let expected_digest_128 = [
//! 0xfd, 0x3b, 0x31, 0x35, 0x35, 0x05, 0x87, 0xd5, 0x36, 0x2a, 0xae, 0x4d, 0x1c, 0x8a, 0x25,
//! 0xba, 0xa4, 0xec, 0x82, 0xef, 0xff, 0xb8, 0x27, 0x1c, 0x91, 0x20, 0xa2, 0xed, 0x53, 0x17,
//! 0x2a, 0xcc, 0x97, 0x97, 0x34, 0x65, 0x1e, 0x69, 0xb3, 0xb3, 0x27, 0x09, 0x4c, 0xc0, 0x5e,
//! 0xde, 0x3b, 0x5d, 0xf9, 0x98, 0xe6, 0x37, 0xce, 0x06, 0xb3, 0xa0, 0x53, 0xdf, 0x81, 0x80,
//! 0x99, 0x8c, 0xfc, 0x95,
//! ];
//! let expected_digest_256 = [
//! 0xf0, 0x85, 0x60, 0x6b, 0xed, 0xca, 0x25, 0xe4, 0x3c, 0x97, 0x05, 0x0f, 0xf2, 0x3e, 0xe0,
//! 0xd9, 0xe5, 0x89, 0x14, 0xff, 0xbb, 0x30, 0x5a, 0x00, 0x26, 0x30, 0x1c, 0x25, 0x7a, 0x5a,
//! 0xeb, 0x50, 0x7e, 0x4b, 0x21, 0x19, 0x53, 0x3f, 0xf7, 0x23, 0xc7, 0xe1, 0xad, 0xc5, 0xdf,
//! 0x2a, 0x62, 0x1d, 0xad, 0x18, 0xa4, 0x46, 0xaf, 0xeb, 0x2a, 0x54, 0xb3, 0xad, 0xfe, 0xc7,
//! 0x8e, 0x08, 0x6a, 0x6f,
//! ];
//!
//! let digest: [u8; 64] = digest::shake128(data);
//! assert_eq!(digest, expected_digest_128.as_slice());
//! let digest: [u8; 64] = digest::shake256(data);
//! assert_eq!(&digest, expected_digest_256.as_slice());
//! ```
//!
//! ## Blake2b
//! ```rust
//! use hacl::digest::{self, Algorithm};
//!
//! let data = [
//! 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
//! 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,
//! 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,
//! 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b,
//! 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,
//! 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,
//! 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,
//! 0x69, 0x6a,
//! ];
//! let expected_digest = [
//! 0x22, 0xef, 0xf8, 0xe6, 0xdd, 0x52, 0x36, 0xf5, 0xf5, 0x7d, 0x94, 0xed, 0xe8, 0x74, 0xd6,
//! 0xc9, 0x42, 0x8e, 0x8f, 0x5d, 0x56, 0x6f, 0x17, 0xcd, 0x6d, 0x18, 0x48, 0xcd, 0x75, 0x2f,
//! 0xe1, 0x3c, 0x65, 0x5c, 0xb1, 0x0f, 0xba, 0xaf, 0xf7, 0x68, 0x72, 0xf2, 0xbf, 0x2d, 0xa9,
//! 0x9e, 0x15, 0xdc, 0x62, 0x40, 0x75, 0xe1, 0xec, 0x2f, 0x58, 0xa3, 0xf6, 0x40, 0x72, 0x12,
//! 0x18, 0x38, 0x56, 0x9e,
//! ];
//!
//! assert_eq!(digest::hash(Algorithm::Blake2b, &data)[..], expected_digest[..]);
//! ```
//!
//! ## Blake2s
//! ```rust
//! use hacl::digest::{self, Algorithm};
//!
//! let data = [
//! 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
//! 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d,
//! 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c,
//! 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
//! ];
//! let expected_digest = [
//! 0xe2, 0x90, 0xdd, 0x27, 0x0b, 0x46, 0x7f, 0x34, 0xab, 0x1c, 0x00, 0x2d, 0x34, 0x0f, 0xa0,
//! 0x16, 0x25, 0x7f, 0xf1, 0x9e, 0x58, 0x33, 0xfd, 0xbb, 0xf2, 0xcb, 0x40, 0x1c, 0x3b, 0x28,
//! 0x17, 0xde,
//! ];
//!
//! assert_eq!(digest::hash(Algorithm::Blake2s, &data), expected_digest);
//! ```
#[cfg(feature = "serialization")]
use serde::{Deserialize, Serialize};
use hacl_sys::*;
#[derive(Debug)]
pub enum Error {
InvalidStateFinished,
ModeUnsupportedForStreaming,
}
/// The Digest Algorithm.
#[derive(Copy, Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serialization", derive(Serialize, Deserialize))]
pub enum Algorithm {
Sha1 = Spec_Hash_Definitions_SHA1 as isize,
Sha224 = Spec_Hash_Definitions_SHA2_224 as isize,
Sha256 = Spec_Hash_Definitions_SHA2_256 as isize,
Sha384 = Spec_Hash_Definitions_SHA2_384 as isize,
Sha512 = Spec_Hash_Definitions_SHA2_512 as isize,
Blake2s = Spec_Hash_Definitions_Blake2S as isize,
Blake2b = Spec_Hash_Definitions_Blake2B as isize,
Sha3_256 = Spec_Hash_Definitions_SHA3_256 as isize,
// XXX: The following is not in evercrypt (agile API) so we define something here.
Sha3_224 = 9,
Sha3_384 = 10,
Sha3_512 = 11,
}
#[allow(non_upper_case_globals)]
impl From<u32> for Algorithm {
fn from(v: u32) -> Algorithm {
match v {
Spec_Hash_Definitions_SHA1 => Algorithm::Sha1,
Spec_Hash_Definitions_SHA2_224 => Algorithm::Sha224,
Spec_Hash_Definitions_SHA2_256 => Algorithm::Sha256,
Spec_Hash_Definitions_SHA2_384 => Algorithm::Sha384,
Spec_Hash_Definitions_SHA2_512 => Algorithm::Sha512,
Spec_Hash_Definitions_Blake2S => Algorithm::Blake2s,
Spec_Hash_Definitions_Blake2B => Algorithm::Blake2b,
Spec_Hash_Definitions_SHA3_256 => Algorithm::Sha3_256,
9 => Algorithm::Sha3_224,
10 => Algorithm::Sha3_384,
11 => Algorithm::Sha3_512,
_ => panic!("Unknown Digest mode {}", v),
}
}
}
impl From<Algorithm> for Spec_Hash_Definitions_hash_alg {
fn from(v: Algorithm) -> Spec_Hash_Definitions_hash_alg {
match v {
Algorithm::Sha1 => Spec_Hash_Definitions_SHA1 as Spec_Hash_Definitions_hash_alg,
Algorithm::Sha224 => Spec_Hash_Definitions_SHA2_224 as Spec_Hash_Definitions_hash_alg,
Algorithm::Sha256 => Spec_Hash_Definitions_SHA2_256 as Spec_Hash_Definitions_hash_alg,
Algorithm::Sha384 => Spec_Hash_Definitions_SHA2_384 as Spec_Hash_Definitions_hash_alg,
Algorithm::Sha512 => Spec_Hash_Definitions_SHA2_512 as Spec_Hash_Definitions_hash_alg,
Algorithm::Blake2s => Spec_Hash_Definitions_Blake2S as Spec_Hash_Definitions_hash_alg,
Algorithm::Blake2b => Spec_Hash_Definitions_Blake2B as Spec_Hash_Definitions_hash_alg,
Algorithm::Sha3_256 => Spec_Hash_Definitions_SHA3_256 as Spec_Hash_Definitions_hash_alg,
Algorithm::Sha3_224 => 9,
Algorithm::Sha3_384 => 10,
Algorithm::Sha3_512 => 11,
}
}
}
/// Returns the output size of a digest.
pub const fn digest_size(mode: Algorithm) -> usize {
match mode {
Algorithm::Sha1 => 20,
Algorithm::Sha224 => 28,
Algorithm::Sha256 => 32,
Algorithm::Sha384 => 48,
Algorithm::Sha512 => 64,
Algorithm::Blake2s => 32,
Algorithm::Blake2b => 64,
Algorithm::Sha3_224 => 28,
Algorithm::Sha3_256 => 32,
Algorithm::Sha3_384 => 48,
Algorithm::Sha3_512 => 64,
}
}
impl Algorithm {
pub fn size(self) -> usize {
digest_size(self)
}
}
/// Check if we do SHA3, which is not in the agile API and hence has to be
/// handled differently.
/// SHA3 256 is supported.
const fn does_not_support_streaming(alg: Algorithm) -> bool {
matches!(
alg,
Algorithm::Sha3_224 | Algorithm::Sha3_384 | Algorithm::Sha3_512
)
}
/// The digest struct for stateful hashing.
pub struct Digest {
mode: Algorithm,
finished: bool,
c_state: *mut EverCrypt_Hash_Incremental_state_t,
}
impl Digest {
/// Create a new digest for the given mode `alg`.
pub fn new(alg: Algorithm) -> Result<Self, Error> {
if does_not_support_streaming(alg) {
return Err(Error::ModeUnsupportedForStreaming);
}
unsafe {
// Make sure this happened.
EverCrypt_AutoConfig2_init();
}
let c_state: *mut EverCrypt_Hash_Incremental_state_t =
unsafe { EverCrypt_Hash_Incremental_malloc(alg.into()) };
Ok(Self {
mode: alg,
finished: false,
c_state,
})
}
/// Update the hash state.
/// Modifies `self` and doesn't return anything but an `Error` in case the
/// update fails.
pub fn update(&mut self, data: &[u8]) -> Result<(), Error> {
if self.finished {
return Err(Error::InvalidStateFinished);
}
unsafe {
EverCrypt_Hash_Incremental_update(self.c_state, data.as_ptr() as _, data.len() as u32);
}
Ok(())
}
/// Finish the hash computation.
/// Returns the digest or an `Error`.
///
/// **The struct can not be re-used after this!**
pub fn finish(&mut self) -> Result<Vec<u8>, Error> {
if self.finished {
return Err(Error::InvalidStateFinished);
}
let mut out = vec![0u8; digest_size(self.mode)];
unsafe {
EverCrypt_Hash_Incremental_digest(self.c_state, out.as_mut_ptr());
}
self.finished = true;
Ok(out)
}
}
impl Drop for Digest {
fn drop(&mut self) {
unsafe {
EverCrypt_Hash_Incremental_free(self.c_state);
}
}
}
// Single-shot API with array returns.
macro_rules! define_plain_digest {
($name:ident, $version:expr, $l:literal) => {
/// Single-shot API with a fixed length output.
pub fn $name(data: &[u8]) -> [u8; $l] {
let mut out = [0u8; $l];
unsafe {
// Make sure this happened.
EverCrypt_AutoConfig2_init();
}
match $version {
Algorithm::Sha3_224 => unsafe {
Hacl_Hash_SHA3_sha3_224(out.as_mut_ptr(), data.as_ptr() as _, data.len() as u32)
},
Algorithm::Sha3_256 => unsafe {
Hacl_Hash_SHA3_sha3_256(out.as_mut_ptr(), data.as_ptr() as _, data.len() as u32)
},
Algorithm::Sha3_384 => unsafe {
Hacl_Hash_SHA3_sha3_384(out.as_mut_ptr(), data.as_ptr() as _, data.len() as u32)
},
Algorithm::Sha3_512 => unsafe {
Hacl_Hash_SHA3_sha3_512(out.as_mut_ptr(), data.as_ptr() as _, data.len() as u32)
},
_ => unsafe {
EverCrypt_Hash_Incremental_hash(
$version.into(),
out.as_mut_ptr(),
data.as_ptr() as _,
data.len() as u32,
);
},
}
out
}
};
}
define_plain_digest!(sha1, Algorithm::Sha1, 20);
define_plain_digest!(sha224, Algorithm::Sha224, 28);
define_plain_digest!(sha256, Algorithm::Sha256, 32);
define_plain_digest!(sha384, Algorithm::Sha384, 48);
define_plain_digest!(sha512, Algorithm::Sha512, 64);
define_plain_digest!(sha3_224, Algorithm::Sha3_224, 28);
define_plain_digest!(sha3_256, Algorithm::Sha3_256, 32);
define_plain_digest!(sha3_384, Algorithm::Sha3_384, 48);
define_plain_digest!(sha3_512, Algorithm::Sha3_512, 64);
define_plain_digest!(blake2s, Algorithm::Blake2s, 32);
define_plain_digest!(blake2b, Algorithm::Blake2b, 64);
// Single-shot API
/// Create the digest for the given `data` and mode `alg`.
/// The output has length `get_digest_size(alg)`.
pub fn hash(alg: Algorithm, data: &[u8]) -> Vec<u8> {
match alg {
Algorithm::Sha1 => sha1(data).to_vec(),
Algorithm::Sha224 => sha224(data).to_vec(),
Algorithm::Sha256 => sha256(data).to_vec(),
Algorithm::Sha384 => sha384(data).to_vec(),
Algorithm::Sha512 => sha512(data).to_vec(),
Algorithm::Sha3_224 => sha3_224(data).to_vec(),
Algorithm::Sha3_256 => sha3_256(data).to_vec(),
Algorithm::Sha3_384 => sha3_384(data).to_vec(),
Algorithm::Sha3_512 => sha3_512(data).to_vec(),
Algorithm::Blake2s => blake2s(data).to_vec(),
Algorithm::Blake2b => blake2b(data).to_vec(),
}
}
// SHAKE messages from SHA 3
/// SHAKE 128
///
/// Note that the output length `BYTES` must fit into 32 bit. If it is longer,
/// the output will only return `u32::MAX` bytes.
pub fn shake128<const BYTES: usize>(data: &[u8]) -> [u8; BYTES] {
let mut out = [0u8; BYTES];
unsafe {
Hacl_Hash_SHA3_shake128(
out.as_mut_ptr(),
BYTES as u32,
data.as_ptr() as _,
data.len() as u32,
);
}
out
}
/// SHAKE 256
///
/// Note that the output length `BYTES` must fit into 32 bit. If it is longer,
/// the output will only return `u32::MAX` bytes.
pub fn shake256<const BYTES: usize>(data: &[u8]) -> [u8; BYTES] {
let mut out = [0u8; BYTES];
unsafe {
Hacl_Hash_SHA3_shake256(
out.as_mut_ptr(),
BYTES as u32,
data.as_ptr() as _,
data.len() as u32,
);
}
out
}