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
//! Assembly implementation of the [Whirlpool] compression function.
//!
//! This crate is not intended for direct use, most users should
//! prefer the [`whirlpool`] crate with enabled `asm` feature instead.
//!
//! Only x86 and x86-64 architectures are currently supported.
//!
//! [Whirlpool]: https://en.wikipedia.org/wiki/Whirlpool_(cryptography)
//! [`whirlpool`]: https://crates.io/crates/whirlpool

#![no_std]
#[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
compile_error!("crate can only be used on x86 and x86-64 architectures");

#[link(name = "whirlpool", kind = "static")]
extern "C" {
    fn whirlpool_compress(state: &mut [u64; 8], block: &[u8; 64]);
}

/// Safe wrapper around assembly implementation of the Whirlpool compression function
#[inline]
pub fn compress(state: &mut [u64; 8], blocks: &[[u8; 64]]) {
    for block in blocks {
        unsafe { whirlpool_compress(state, block) }
    }
}