packages feed

ppad-poly1305 0.4.1 → 0.4.2

raw patch · 8 files changed

+545/−15 lines, 8 filesdep +deepseqdep +weighdep ~basedep ~bytestring

Dependencies added: deepseq, weigh

Dependency ranges changed: base, bytestring

Files

CHANGELOG view
@@ -1,5 +1,9 @@ # Changelog +- 0.4.2 (2026-05-16)+  * Features order-of-magnitude performance improvements, especially+    on ARM platforms where NEON intrinsics are available.+ - 0.4.1 (2025-12-28)   * Bumps the ppad-fixed lower-bound version and tests with GHC 9.10.3. 
bench/Main.hs view
@@ -1,14 +1,19 @@+{-# OPTIONS_GHC -fno-warn-orphans #-} {-# LANGUAGE BangPatterns #-} {-# LANGUAGE OverloadedStrings #-}  module Main where +import Control.DeepSeq import Criterion.Main import qualified Crypto.MAC.Poly1305 as Poly1305 import qualified Data.ByteString as BS import qualified Data.ByteString.Base16 as B16 import Data.Maybe (fromJust) +instance NFData Poly1305.MAC where+  rnf (Poly1305.MAC b) = rnf b+ main :: IO () main = defaultMain [     suite@@ -30,11 +35,19 @@ key_big = fromJust . B16.decode $   "fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3" +msg_1k :: BS.ByteString+msg_1k = BS.replicate 1024 0x42++msg_4k :: BS.ByteString+msg_4k = BS.replicate 4096 0x42+ suite :: Benchmark suite =   bgroup "ppad-poly1305" [     bench "mac (small key)" $ nf (Poly1305.mac key_small) msg   , bench "mac (mid key)" $ nf (Poly1305.mac key_mid) msg   , bench "mac (big key)" $ nf (Poly1305.mac key_big) msg+  , bench "mac (1024B msg)" $ nf (Poly1305.mac key_big) msg_1k+  , bench "mac (4096B msg)" $ nf (Poly1305.mac key_big) msg_4k   ] 
+ bench/Weight.hs view
@@ -0,0 +1,30 @@+{-# OPTIONS_GHC -fno-warn-orphans #-}+{-# LANGUAGE BangPatterns #-}+{-# LANGUAGE OverloadedStrings #-}++module Main where++import Control.DeepSeq+import qualified Crypto.MAC.Poly1305 as Poly1305+import qualified Data.ByteString as BS+import Weigh++instance NFData Poly1305.MAC where+  rnf (Poly1305.MAC b) = rnf b++-- note that 'weigh' doesn't work properly in a repl+main :: IO ()+main = mainWith mac++mac :: Weigh ()+mac =+  let !key = BS.replicate 32 0x88+      !bs0 = BS.replicate 16 0+      !bs1 = BS.replicate 64 0+      !bs2 = BS.replicate 128 0+      !bs3 = BS.replicate 1024 0+  in  wgroup "mac" $ do+        func "mac (16B   input)" (Poly1305.mac key) bs0+        func "mac (64B   input)" (Poly1305.mac key) bs1+        func "mac (128B  input)" (Poly1305.mac key) bs2+        func "mac (1024B input)" (Poly1305.mac key) bs3
+ cbits/poly1305_arm.c view
@@ -0,0 +1,360 @@+#include <stddef.h>+#include <stdint.h>+#include <string.h>++#if defined(__aarch64__)++#include <arm_neon.h>++/*+ * Poly1305 (RFC 8439).  ARM acceleration via two paths:+ *+ *  1. A scalar 26-bit-limb kernel using 64-bit native arithmetic for+ *     the limb multiplications.  Used for setup (precomputing r^k),+ *     for messages shorter than 64 bytes, and for the < 4-block tail+ *     of longer messages.  Also serves as the stage-1 reference; the+ *     NEON kernel below was added in a separate commit.+ *+ *  2. A NEON 4-way parallel kernel (when at least 4 full blocks+ *     remain).  Layout: 5 'uint32x4_t' limb vectors hold one limb+ *     position each across 4 message blocks; matching r-power+ *     vectors hold (r^4, r^3, r^2, r^1) at the same limb position.+ *     For each output position d_j we accumulate 5 partial products+ *     across both vector halves with 'vmull'/'vmlal', then+ *     horizontally sum the 4 lanes with 'vaddvq_u64'.  The same+ *     carry-propagation pattern as the scalar path reduces back to+ *     26-bit limbs.+ *+ * Reduction rule (used in both paths): 2^130 = 5 (mod 2^130 - 5),+ * so any partial product whose 'position' exceeds 4 folds back as+ * (5 * value) into position (pos - 5).+ */++#define MASK26 0x3ffffffu++/*+ * Multiply two 130-bit values mod (2^130 - 5).  Inputs in 5x 26-bit+ * limb form, output in 5x 26-bit limb form (each output limb < 2^26+ * except possibly limb 1, which may carry a small excess absorbed+ * by the next 'mul_mod_p' or by 'normalize').+ */+static void mul_mod_p(const uint32_t a[5], const uint32_t b[5],+                      uint32_t out[5]) {+    uint64_t d0, d1, d2, d3, d4, c;++    d0 = (uint64_t)a[0]*b[0]+       + 5 * ((uint64_t)a[4]*b[1] + (uint64_t)a[3]*b[2]+            + (uint64_t)a[2]*b[3] + (uint64_t)a[1]*b[4]);+    d1 = (uint64_t)a[0]*b[1] + (uint64_t)a[1]*b[0]+       + 5 * ((uint64_t)a[4]*b[2] + (uint64_t)a[3]*b[3]+            + (uint64_t)a[2]*b[4]);+    d2 = (uint64_t)a[0]*b[2] + (uint64_t)a[1]*b[1]+       + (uint64_t)a[2]*b[0]+       + 5 * ((uint64_t)a[4]*b[3] + (uint64_t)a[3]*b[4]);+    d3 = (uint64_t)a[0]*b[3] + (uint64_t)a[1]*b[2]+       + (uint64_t)a[2]*b[1] + (uint64_t)a[3]*b[0]+       + 5 * ((uint64_t)a[4]*b[4]);+    d4 = (uint64_t)a[0]*b[4] + (uint64_t)a[1]*b[3]+       + (uint64_t)a[2]*b[2] + (uint64_t)a[3]*b[1]+       + (uint64_t)a[4]*b[0];++    c = d0 >> 26; d0 &= MASK26; d1 += c;+    c = d1 >> 26; d1 &= MASK26; d2 += c;+    c = d2 >> 26; d2 &= MASK26; d3 += c;+    c = d3 >> 26; d3 &= MASK26; d4 += c;+    c = d4 >> 26; d4 &= MASK26; d0 += c * 5;+    c = d0 >> 26; d0 &= MASK26; d1 += c;++    out[0] = (uint32_t)d0;+    out[1] = (uint32_t)d1;+    out[2] = (uint32_t)d2;+    out[3] = (uint32_t)d3;+    out[4] = (uint32_t)d4;+}++/*+ * Parse 16 little-endian bytes plus a 'hibit' value (0 or 1) at bit+ * 128 into 5 26-bit limbs.+ */+static inline void blk2limbs(const uint8_t m[16], uint32_t hibit,+                              uint32_t l[5]) {+    uint32_t t0, t1, t2, t3;+    memcpy(&t0, m,     4);+    memcpy(&t1, m + 4, 4);+    memcpy(&t2, m + 8, 4);+    memcpy(&t3, m + 12, 4);+    l[0] =  t0                                & MASK26;+    l[1] = ((t0 >> 26) | (t1 <<  6))          & MASK26;+    l[2] = ((t1 >> 20) | (t2 << 12))          & MASK26;+    l[3] = ((t2 >> 14) | (t3 << 18))          & MASK26;+    l[4] =  (t3 >>  8) | (hibit << 24);+}++/*+ * Process one full 16-byte block: h := (h + m) * r mod p, scalar+ * implementation.+ */+static inline void scalar_block(uint32_t h[5], const uint32_t r[5],+                                const uint8_t m[16], uint32_t hibit) {+    uint32_t blk[5];+    blk2limbs(m, hibit, blk);++    uint32_t hl[5];+    hl[0] = h[0] + blk[0];+    hl[1] = h[1] + blk[1];+    hl[2] = h[2] + blk[2];+    hl[3] = h[3] + blk[3];+    hl[4] = h[4] + blk[4];++    mul_mod_p(hl, r, h);+}++/*+ * 4-block NEON update.  Computes:+ *   h := (h + m_0)*r^4 + m_1*r^3 + m_2*r^2 + m_3*r^1   mod p+ *+ * where m_0..m_3 are four consecutive 16-byte input blocks (so the+ * function consumes 64 bytes).  The polynomial identity is the+ * standard Horner expansion of 4 sequential block updates.+ */+static void neon4_block(uint32_t h[5],+                        const uint32_t r1[5], const uint32_t r2[5],+                        const uint32_t r3[5], const uint32_t r4[5],+                        const uint8_t m[64]) {+    /* Limbify the four blocks. */+    uint32_t b0[5], b1[5], b2[5], b3[5];+    blk2limbs(m,      1, b0);+    blk2limbs(m + 16, 1, b1);+    blk2limbs(m + 32, 1, b2);+    blk2limbs(m + 48, 1, b3);++    /* Fold the running accumulator into the first block. */+    b0[0] += h[0]; b0[1] += h[1]; b0[2] += h[2];+    b0[3] += h[3]; b0[4] += h[4];++    /* Pack messages: mv[i] = (b0[i], b1[i], b2[i], b3[i]). */+    uint32x4_t mv0 = { b0[0], b1[0], b2[0], b3[0] };+    uint32x4_t mv1 = { b0[1], b1[1], b2[1], b3[1] };+    uint32x4_t mv2 = { b0[2], b1[2], b2[2], b3[2] };+    uint32x4_t mv3 = { b0[3], b1[3], b2[3], b3[3] };+    uint32x4_t mv4 = { b0[4], b1[4], b2[4], b3[4] };++    /* Pack r-powers: rv[i] = (r^4[i], r^3[i], r^2[i], r^1[i]).      */+    uint32x4_t rv0 = { r4[0], r3[0], r2[0], r1[0] };+    uint32x4_t rv1 = { r4[1], r3[1], r2[1], r1[1] };+    uint32x4_t rv2 = { r4[2], r3[2], r2[2], r1[2] };+    uint32x4_t rv3 = { r4[3], r3[3], r2[3], r1[3] };+    uint32x4_t rv4 = { r4[4], r3[4], r2[4], r1[4] };++    /* 5 * r-powers, for partial products whose position wraps past+     * 4 (mod 2^130 - 5 = 5).                                       */+    uint32x4_t rv1_5 = vaddq_u32(vshlq_n_u32(rv1, 2), rv1);+    uint32x4_t rv2_5 = vaddq_u32(vshlq_n_u32(rv2, 2), rv2);+    uint32x4_t rv3_5 = vaddq_u32(vshlq_n_u32(rv3, 2), rv3);+    uint32x4_t rv4_5 = vaddq_u32(vshlq_n_u32(rv4, 2), rv4);++    /*+     * Output limb j = sum_i (mv[i] * appropriate r-power for shift j-i,+     * with 5x multiplier when j - i is negative).  Per output we sum+     * across the 4 lanes ('vaddvq_u64') after collecting both vmull+     * halves.+     */+#define MUL5_LO(m_, r_) vmull_u32(vget_low_u32(m_), vget_low_u32(r_))+#define MUL5_HI(m_, r_) vmull_high_u32(m_, r_)+#define MLA_LO(acc, m_, r_) \+    vmlal_u32(acc, vget_low_u32(m_), vget_low_u32(r_))+#define MLA_HI(acc, m_, r_) vmlal_high_u32(acc, m_, r_)++    uint64x2_t l0 = MUL5_LO(mv0, rv0);+    uint64x2_t h0 = MUL5_HI(mv0, rv0);+    l0 = MLA_LO(l0, mv1, rv4_5);  h0 = MLA_HI(h0, mv1, rv4_5);+    l0 = MLA_LO(l0, mv2, rv3_5);  h0 = MLA_HI(h0, mv2, rv3_5);+    l0 = MLA_LO(l0, mv3, rv2_5);  h0 = MLA_HI(h0, mv3, rv2_5);+    l0 = MLA_LO(l0, mv4, rv1_5);  h0 = MLA_HI(h0, mv4, rv1_5);+    uint64_t d0 = vaddvq_u64(l0) + vaddvq_u64(h0);++    uint64x2_t l1 = MUL5_LO(mv0, rv1);+    uint64x2_t h1 = MUL5_HI(mv0, rv1);+    l1 = MLA_LO(l1, mv1, rv0   );  h1 = MLA_HI(h1, mv1, rv0   );+    l1 = MLA_LO(l1, mv2, rv4_5);  h1 = MLA_HI(h1, mv2, rv4_5);+    l1 = MLA_LO(l1, mv3, rv3_5);  h1 = MLA_HI(h1, mv3, rv3_5);+    l1 = MLA_LO(l1, mv4, rv2_5);  h1 = MLA_HI(h1, mv4, rv2_5);+    uint64_t d1 = vaddvq_u64(l1) + vaddvq_u64(h1);++    uint64x2_t l2 = MUL5_LO(mv0, rv2);+    uint64x2_t h2 = MUL5_HI(mv0, rv2);+    l2 = MLA_LO(l2, mv1, rv1   );  h2 = MLA_HI(h2, mv1, rv1   );+    l2 = MLA_LO(l2, mv2, rv0   );  h2 = MLA_HI(h2, mv2, rv0   );+    l2 = MLA_LO(l2, mv3, rv4_5);  h2 = MLA_HI(h2, mv3, rv4_5);+    l2 = MLA_LO(l2, mv4, rv3_5);  h2 = MLA_HI(h2, mv4, rv3_5);+    uint64_t d2 = vaddvq_u64(l2) + vaddvq_u64(h2);++    uint64x2_t l3 = MUL5_LO(mv0, rv3);+    uint64x2_t h3 = MUL5_HI(mv0, rv3);+    l3 = MLA_LO(l3, mv1, rv2   );  h3 = MLA_HI(h3, mv1, rv2   );+    l3 = MLA_LO(l3, mv2, rv1   );  h3 = MLA_HI(h3, mv2, rv1   );+    l3 = MLA_LO(l3, mv3, rv0   );  h3 = MLA_HI(h3, mv3, rv0   );+    l3 = MLA_LO(l3, mv4, rv4_5);  h3 = MLA_HI(h3, mv4, rv4_5);+    uint64_t d3 = vaddvq_u64(l3) + vaddvq_u64(h3);++    uint64x2_t l4 = MUL5_LO(mv0, rv4);+    uint64x2_t h4 = MUL5_HI(mv0, rv4);+    l4 = MLA_LO(l4, mv1, rv3);  h4 = MLA_HI(h4, mv1, rv3);+    l4 = MLA_LO(l4, mv2, rv2);  h4 = MLA_HI(h4, mv2, rv2);+    l4 = MLA_LO(l4, mv3, rv1);  h4 = MLA_HI(h4, mv3, rv1);+    l4 = MLA_LO(l4, mv4, rv0);  h4 = MLA_HI(h4, mv4, rv0);+    uint64_t d4 = vaddvq_u64(l4) + vaddvq_u64(h4);++#undef MUL5_LO+#undef MUL5_HI+#undef MLA_LO+#undef MLA_HI++    /* Carry propagation, same shape as 'mul_mod_p'. */+    uint64_t c;+    c = d0 >> 26; d0 &= MASK26; d1 += c;+    c = d1 >> 26; d1 &= MASK26; d2 += c;+    c = d2 >> 26; d2 &= MASK26; d3 += c;+    c = d3 >> 26; d3 &= MASK26; d4 += c;+    c = d4 >> 26; d4 &= MASK26; d0 += c * 5;+    c = d0 >> 26; d0 &= MASK26; d1 += c;++    h[0] = (uint32_t)d0;+    h[1] = (uint32_t)d1;+    h[2] = (uint32_t)d2;+    h[3] = (uint32_t)d3;+    h[4] = (uint32_t)d4;+}++/*+ * Compute a 16-byte Poly1305 MAC over 'msg' (length 'msglen') using+ * the 32-byte 'key'.  Writes the tag to 'mac_out'.+ */+void poly1305_mac_arm(const uint8_t key[32], const uint8_t *msg,+                      size_t msglen, uint8_t mac_out[16]) {+    /* clamp r */+    uint32_t t0, t1, t2, t3;+    memcpy(&t0, key,      4);+    memcpy(&t1, key + 4,  4);+    memcpy(&t2, key + 8,  4);+    memcpy(&t3, key + 12, 4);+    t0 &= 0x0fffffffu;+    t1 &= 0x0ffffffcu;+    t2 &= 0x0ffffffcu;+    t3 &= 0x0ffffffcu;++    uint32_t r[5];+    r[0] =  t0                          & MASK26;+    r[1] = ((t0 >> 26) | (t1 <<  6))    & MASK26;+    r[2] = ((t1 >> 20) | (t2 << 12))    & MASK26;+    r[3] = ((t2 >> 14) | (t3 << 18))    & MASK26;+    r[4] =  (t3 >>  8);++    uint32_t h[5] = { 0, 0, 0, 0, 0 };++    size_t pos = 0;++    /* NEON 4-way path: amortizing the r^2/r^3/r^4 precomputation+     * (3 scalar mul_mod_p calls) needs about 4 NEON iterations to+     * break even versus the scalar block loop, so only engage it+     * when we have at least 16 full blocks (256 bytes).            */+    if (msglen >= 256) {+        uint32_t r2[5], r3[5], r4[5];+        mul_mod_p(r,  r,  r2);+        mul_mod_p(r2, r,  r3);+        mul_mod_p(r3, r,  r4);++        while (pos + 64 <= msglen) {+            neon4_block(h, r, r2, r3, r4, msg + pos);+            pos += 64;+        }+    }++    /* Scalar tail: any remaining full blocks (< 4 of them). */+    while (pos + 16 <= msglen) {+        scalar_block(h, r, msg + pos, 1);+        pos += 16;+    }++    /* Final partial block (1..15 trailing bytes), if any. */+    if (pos < msglen) {+        size_t rem = msglen - pos;+        uint8_t pad[16] = { 0 };+        memcpy(pad, msg + pos, rem);+        pad[rem] = 1;+        scalar_block(h, r, pad, 0);+    }++    /* normalize h (mul_mod_p may leave a small excess in h[1]) */+    {+        uint32_t c;+        c = h[1] >> 26; h[1] &= MASK26; h[2] += c;+        c = h[2] >> 26; h[2] &= MASK26; h[3] += c;+        c = h[3] >> 26; h[3] &= MASK26; h[4] += c;+        c = h[4] >> 26; h[4] &= MASK26; h[0] += c * 5;+        c = h[0] >> 26; h[0] &= MASK26; h[1] += c;+    }++    /* full reduction to [0, p) via constant-time conditional+     * subtraction of p */+    uint32_t g[5];+    uint32_t c = 5;+    g[0] = h[0] + c;   c = g[0] >> 26; g[0] &= MASK26;+    g[1] = h[1] + c;   c = g[1] >> 26; g[1] &= MASK26;+    g[2] = h[2] + c;   c = g[2] >> 26; g[2] &= MASK26;+    g[3] = h[3] + c;   c = g[3] >> 26; g[3] &= MASK26;+    g[4] = h[4] + c;+    uint32_t carry = g[4] >> 26;+    g[4] &= MASK26;+    uint32_t mask = (uint32_t)0 - carry;+    h[0] = (h[0] & ~mask) | (g[0] & mask);+    h[1] = (h[1] & ~mask) | (g[1] & mask);+    h[2] = (h[2] & ~mask) | (g[2] & mask);+    h[3] = (h[3] & ~mask) | (g[3] & mask);+    h[4] = (h[4] & ~mask) | (g[4] & mask);++    /* repack 5x 26-bit limbs into 4x 32-bit limbs */+    uint32_t h0 =  h[0]        | (h[1] << 26);+    uint32_t h1 = (h[1] >>  6) | (h[2] << 20);+    uint32_t h2 = (h[2] >> 12) | (h[3] << 14);+    uint32_t h3 = (h[3] >> 18) | (h[4] <<  8);++    /* add s (high 16 bytes of key), mod 2^128 */+    uint32_t s0, s1, s2, s3;+    memcpy(&s0, key + 16, 4);+    memcpy(&s1, key + 20, 4);+    memcpy(&s2, key + 24, 4);+    memcpy(&s3, key + 28, 4);++    uint64_t a0 = (uint64_t)h0 + s0;+    uint64_t a1 = (uint64_t)h1 + s1 + (a0 >> 32);+    uint64_t a2 = (uint64_t)h2 + s2 + (a1 >> 32);+    uint64_t a3 = (uint64_t)h3 + s3 + (a2 >> 32);++    uint32_t o0 = (uint32_t)a0;+    uint32_t o1 = (uint32_t)a1;+    uint32_t o2 = (uint32_t)a2;+    uint32_t o3 = (uint32_t)a3;++    memcpy(mac_out + 0,  &o0, 4);+    memcpy(mac_out + 4,  &o1, 4);+    memcpy(mac_out + 8,  &o2, 4);+    memcpy(mac_out + 12, &o3, 4);+}++int poly1305_arm_available(void) {+    return 1;+}++#else++void poly1305_mac_arm(const uint8_t *key, const uint8_t *msg,+                      size_t msglen, uint8_t *mac_out) {+    (void)key; (void)msg; (void)msglen; (void)mac_out;+}++int poly1305_arm_available(void) {+    return 0;+}++#endif
lib/Crypto/MAC/Poly1305.hs view
@@ -1,5 +1,7 @@ {-# OPTIONS_HADDOCK prune #-} {-# LANGUAGE BangPatterns #-}+{-# LANGUAGE DerivingStrategies #-}+{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE MagicHash #-} {-# LANGUAGE ViewPatterns #-}@@ -16,13 +18,16 @@  module Crypto.MAC.Poly1305 (     -- * Poly1305 message authentication code-    mac+    MAC(..)+  , mac      -- testing   , _poly1305_loop   , _roll16   ) where +import qualified Crypto.MAC.Poly1305.Arm as Arm+import qualified Data.Bits as B import qualified Data.ByteString as BS import qualified Data.ByteString.Internal as BI import qualified Data.ByteString.Unsafe as BU@@ -129,12 +134,36 @@ clamp r = r `W.and` 0x0ffffffc0ffffffc0ffffffc0fffffff {-# INLINE clamp #-} --- | Produce a Poly1305 MAC for the provided message, given the provided---   key.+-- | A Poly1305 message authentication code. -----   Per RFC8439: the key, which is essentially a /one-time/ key, should---   be unique, and MUST be unpredictable for each invocation.+--   Note that you should compare MACs for equality using the 'Eq'+--   instance, which performs the comparison in constant time, instead+--   of unwrapping and comparing the underlying 'ByteStrings'. --+--   >>> let Just foo@(MAC bs0) = mac key "hi"+--   >>> let Just bar@(MAC bs1) = mac key "there"+--   >>> foo == bar -- do this+--   False+--   >>> bs0 == bs1 -- don't do this+--   False+newtype MAC = MAC BS.ByteString+  deriving newtype Show++instance Eq MAC where+  -- | A constant-time equality check for message authentication codes.+  --+  --   Runs in variable-time only for invalid inputs.+  (MAC a@(BI.PS _ _ la)) == (MAC b@(BI.PS _ _ lb))+    | la /= lb  = False+    | otherwise =+        BS.foldl' (B..|.) 0 (BS.packZipWith B.xor a b) == 0++-- | Produce a Poly1305 MAC for the provided message, given the+--   provided key.+--+--   Per RFC8439: the key, which is essentially a /one-time/ key,+--   should be unique, and MUST be unpredictable for each invocation.+-- --   The key must be exactly 256 bits in length. -- --   >>> mac "i'll never use this key again!!!" "a message needing authentication"@@ -142,12 +171,14 @@ mac   :: BS.ByteString -- ^ 256-bit one-time key   -> BS.ByteString -- ^ arbitrary-length message-  -> Maybe BS.ByteString -- ^ 128-bit message authentication code+  -> Maybe MAC     -- ^ 128-bit message authentication code mac key@(BI.PS _ _ kl) msg   | kl /= 32  = Nothing+  | Arm.poly1305_arm_available =+      pure $! MAC (Arm.mac key msg)   | otherwise =       let (clamp . _roll16 -> r, _roll16 -> s) = BS.splitAt 16 key-      in  pure (_poly1305_loop r s msg)+      in  pure $! (MAC (_poly1305_loop r s msg))  -- p = 2^130 - 5 --
+ lib/Crypto/MAC/Poly1305/Arm.hs view
@@ -0,0 +1,58 @@+{-# OPTIONS_HADDOCK hide #-}+{-# LANGUAGE BangPatterns #-}++-- |+-- Module: Crypto.MAC.Poly1305.Arm+-- Copyright: (c) 2025 Jared Tobin+-- License: MIT+-- Maintainer: Jared Tobin <jared@ppad.tech>+--+-- ARM acceleration for the Poly1305 MAC.++module Crypto.MAC.Poly1305.Arm (+    poly1305_arm_available+  , mac+  ) where++import qualified Data.ByteString as BS+import qualified Data.ByteString.Internal as BI+import Data.Word (Word8)+import Foreign.C.Types (CInt(..), CSize(..))+import Foreign.ForeignPtr (withForeignPtr)+import Foreign.Ptr (Ptr, plusPtr)+import System.IO.Unsafe (unsafeDupablePerformIO)++-- ffi ------------------------------------------------------------------------++foreign import ccall unsafe "poly1305_mac_arm"+  c_poly1305_mac+    :: Ptr Word8 -> Ptr Word8 -> CSize -> Ptr Word8 -> IO ()++foreign import ccall unsafe "poly1305_arm_available"+  c_poly1305_arm_available :: IO CInt++-- utilities ------------------------------------------------------------------++fi :: (Integral a, Num b) => a -> b+fi = fromIntegral+{-# INLINE fi #-}++-- api ------------------------------------------------------------------------++-- | Are ARM extensions available?+poly1305_arm_available :: Bool+poly1305_arm_available =+  unsafeDupablePerformIO c_poly1305_arm_available /= 0+{-# NOINLINE poly1305_arm_available #-}++-- | Compute a Poly1305 MAC over the message using the given (already-+--   validated 32-byte) key.+mac :: BS.ByteString -> BS.ByteString -> BS.ByteString+mac (BI.PS kfp koff _) (BI.PS mfp moff mlen) =+  BI.unsafeCreate 16 $ \dst ->+    withForeignPtr kfp $ \kp0 ->+    withForeignPtr mfp $ \mp0 ->+      c_poly1305_mac (kp0 `plusPtr` koff)+                     (mp0 `plusPtr` moff)+                     (fi mlen)+                     dst
ppad-poly1305.cabal view
@@ -1,7 +1,7 @@ cabal-version:      3.0 name:               ppad-poly1305-version:            0.4.1-synopsis:           A pure Poly1305 MAC+version:            0.4.2+synopsis:           A fast Poly1305 MAC license:            MIT license-file:       LICENSE author:             Jared Tobin@@ -11,7 +11,7 @@ tested-with:        GHC == 9.10.3 extra-doc-files:    CHANGELOG description:-  A pure Poly1305 message authentication code, per+  A fast Poly1305 message authentication code, per   [RFC8439](https://datatracker.ietf.org/doc/html/rfc8439).  flag llvm@@ -19,6 +19,11 @@   default:     False   manual:      True +flag sanitize+  description: Build with AddressSanitizer and UndefinedBehaviorSanitizer.+  default:     False+  manual:      True+ source-repository head   type:     git   location: git.ppad.tech/poly1305.git@@ -32,10 +37,18 @@     ghc-options: -fllvm -O2   exposed-modules:       Crypto.MAC.Poly1305+      Crypto.MAC.Poly1305.Arm   build-depends:       base >= 4.9 && < 5     , bytestring >= 0.9 && < 0.13     , ppad-fixed >= 0.1.3 && < 0.2+  c-sources:+      cbits/poly1305_arm.c+  if arch(aarch64)+    cc-options: -march=armv8-a+  if flag(sanitize)+    cc-options: -fsanitize=address,undefined -fno-omit-frame-pointer+    ghc-options: -optl=-fsanitize=address,undefined  test-suite poly1305-tests   type:                exitcode-stdio-1.0@@ -45,6 +58,8 @@    ghc-options:     -rtsopts -Wall -O2+  if flag(sanitize)+    ghc-options: -optl=-fsanitize=address,undefined    build-depends:       base@@ -68,6 +83,25 @@       base     , bytestring     , criterion+    , deepseq     , ppad-base16     , ppad-poly1305++benchmark poly1305-weigh+  type:                exitcode-stdio-1.0+  default-language:    Haskell2010+  hs-source-dirs:      bench+  main-is:             Weight.hs++  ghc-options:+    -rtsopts -O2 -Wall+  if flag(llvm)+    ghc-options: -fllvm++  build-depends:+      base+    , bytestring+    , deepseq+    , ppad-poly1305+    , weigh 
test/Main.hs view
@@ -35,7 +35,7 @@       Just e = B16.decode "a8061dc1305136c6c22b8baf0c0127a9"        Just o = Poly1305.mac key msg-  H.assertEqual mempty e o+  H.assertEqual mempty (Poly1305.MAC e) o  mac1 :: TestTree mac1 = H.testCase "mac (A.3 #1)" $ do@@ -46,7 +46,7 @@       Just tag = B16.decode         "00000000000000000000000000000000"       Just out = Poly1305.mac key msg-  H.assertEqual mempty tag out+  H.assertEqual mempty (Poly1305.MAC tag) out  mac2 :: TestTree mac2 = H.testCase "mac (A.3 #2)" $ do@@ -57,7 +57,7 @@       Just tag = B16.decode         "36e5f6b5c5e06070f0efca96227a863e"       Just out = Poly1305.mac key msg-  H.assertEqual mempty tag out+  H.assertEqual mempty (Poly1305.MAC tag) out  mac3 :: TestTree mac3 = H.testCase "mac (A.3 #3)" $ do@@ -68,7 +68,7 @@       Just tag = B16.decode         "f3477e7cd95417af89a6b8794c310cf0"       Just out = Poly1305.mac key msg-  H.assertEqual mempty tag out+  H.assertEqual mempty (Poly1305.MAC tag) out  mac4 :: TestTree mac4 = H.testCase "mac (A.3 #4)" $ do@@ -79,7 +79,7 @@       Just tag = B16.decode         "4541669a7eaaee61e708dc7cbcc5eb62"       Just out = Poly1305.mac key msg-  H.assertEqual mempty tag out+  H.assertEqual mempty (Poly1305.MAC tag) out  mac5 :: TestTree mac5 = H.testCase "mac (A.3 #5)" $ do