diff --git a/.gitignore b/.gitignore index 2f7896d..b9d396d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ target/ +**/Cargo.lock diff --git a/polyval/src/backend/pmull.rs b/polyval/src/backend/pmull.rs index 0cdebfc..01d3626 100644 --- a/polyval/src/backend/pmull.rs +++ b/polyval/src/backend/pmull.rs @@ -68,7 +68,6 @@ impl Polyval { // TODO(tarcieri): investigate ordering optimizations and fusions e.g.`fuse-crypto-eor` #[inline] #[target_feature(enable = "neon")] - #[target_feature(enable = "crypto")] unsafe fn mul(&mut self, x: &Block) { let h = self.h; let y = veorq_u8(self.y, vld1q_u8(x.as_ptr()));