1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Assembly implementation of [Whirlpool][1] compression function.
//!
//! For full Whirlpool hash function with this implementation of compression
//! function use [whirlpool](https://crates.io/crates/whirlpool) crate with
//! the enabled "asm" feature.
//!
//! Only x86 and x86-64 architectures are currently supported.
//!
//! [1]: https://en.wikipedia.org/wiki/Whirlpool_(cryptography)

#![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 [u8; 64], block: &[u8; 64]);
}

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