dinoxor 0.3.0

Re-implements bitwise operations as abstractions in aarch64 neon registers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(test)]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(not(target_arch = "aarch64"))]
compile_error!("This crate only supports target_arch = \"aarch64\".");

#[cfg_attr(docsrs, doc(cfg(target_arch = "aarch64")))]
#[cfg(test)]
extern crate quickcheck;
#[cfg(test)]
#[macro_use(quickcheck)]
extern crate quickcheck_macros;

pub mod chacha20;
pub mod dinoxor;
#[cfg(test)]
mod tests;