blake2 0.11.0-rc.3

BLAKE2 hash functions
Documentation
// Copyright 2016 blake2-rfc Developers
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

#![allow(dead_code, non_camel_case_types)]

use crate::as_bytes::Safe;

#[cfg(feature = "zeroize")]
use digest::zeroize::Zeroize;

#[cfg(feature = "simd")]
macro_rules! decl_simd {
    ($($decl:item)*) => {
        $(
            #[derive(Clone, Copy, Debug)]
            #[repr(simd)]
            $decl
        )*
    }
}

#[cfg(not(feature = "simd"))]
macro_rules! decl_simd {
    ($($decl:item)*) => {
        $(
            #[derive(Clone, Copy, Debug)]
            #[repr(C)]
            $decl
        )*
    }
}

decl_simd! {
    pub(crate) struct Simd2<T>(pub(crate) T, pub(crate) T);
    pub(crate) struct Simd4<T>(pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T);
    pub(crate) struct Simd8<T>(pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                               pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T);

    pub(crate) struct Simd16<T>(pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T);

    pub(crate) struct Simd32<T>(pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T,
                                pub(crate) T, pub(crate) T, pub(crate) T, pub(crate) T);
}

#[cfg(feature = "zeroize")]
impl<T: Zeroize> Zeroize for Simd4<T> {
    fn zeroize(&mut self) {
        self.0.zeroize();
        self.1.zeroize();
        self.2.zeroize();
        self.3.zeroize();
    }
}

pub(crate) type u64x2 = Simd2<u64>;

pub(crate) type u32x4 = Simd4<u32>;
pub(crate) type u64x4 = Simd4<u64>;

pub(crate) type u16x8 = Simd8<u16>;
pub(crate) type u32x8 = Simd8<u32>;

pub(crate) type u8x16 = Simd16<u8>;
pub(crate) type u16x16 = Simd16<u16>;

pub(crate) type u8x32 = Simd32<u8>;

impl<T> Simd4<T> {
    #[inline(always)]
    pub(crate) fn new(e0: T, e1: T, e2: T, e3: T) -> Simd4<T> {
        Simd4(e0, e1, e2, e3)
    }
}

unsafe impl<T: Safe> Safe for Simd2<T> {}
unsafe impl<T: Safe> Safe for Simd4<T> {}
unsafe impl<T: Safe> Safe for Simd8<T> {}
unsafe impl<T: Safe> Safe for Simd16<T> {}
unsafe impl<T: Safe> Safe for Simd32<T> {}