forked from TrueCloudLab/tzhash
9b3f45993f
``` name old time/op new time/op delta Sum/PureGo_digest-8 16.1ms ± 3% 10.4ms ± 3% -35.53% (p=0.000 n=10+10) name old speed new speed delta Sum/PureGo_digest-8 6.22MB/s ± 3% 9.65MB/s ± 3% +55.12% (p=0.000 n=10+10) ``` Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
133 lines
2.4 KiB
Go
133 lines
2.4 KiB
Go
// Copyright 2019 (c) NSPCC
|
|
//
|
|
// Package gf127 implements the GF(2^127) arithmetic
|
|
// modulo reduction polynomial x^127 + x^63 + 1 .
|
|
// Implementation is in pure Go.
|
|
package gf127
|
|
|
|
import (
|
|
"math/bits"
|
|
)
|
|
|
|
var (
|
|
// x126x631 is reduction polynomial x^127+x^63+1
|
|
x127x631 = GF127{msb64 + 1, msb64}
|
|
)
|
|
|
|
// New constructs new element of GF(2^127) as hi*x^64 + lo.
|
|
// It is assumed that hi has zero MSB.
|
|
func New(lo, hi uint64) *GF127 {
|
|
return &GF127{lo, hi}
|
|
}
|
|
|
|
// Inv sets b to a^-1
|
|
// Algorithm is based on Extended Euclidean Algorithm
|
|
// and is described by Hankerson, Hernandez, Menezes in
|
|
// https://link.springer.com/content/pdf/10.1007/3-540-44499-8_1.pdf
|
|
func Inv(a, b *GF127) {
|
|
var (
|
|
v = x127x631
|
|
u = *a
|
|
c, d = &GF127{1, 0}, &GF127{0, 0}
|
|
t = new(GF127)
|
|
x *GF127
|
|
)
|
|
|
|
// degree of polynomial is a position of most significant bit
|
|
for du, dv := msb(&u), msb(&v); du != 0; du, dv = msb(&u), msb(&v) {
|
|
if du < dv {
|
|
v, u = u, v
|
|
dv, du = du, dv
|
|
d, c = c, d
|
|
}
|
|
|
|
x = xN(du - dv)
|
|
|
|
Mul(x, &v, t)
|
|
Add(&u, t, &u)
|
|
|
|
// becasuse mul performs reduction on t, we need
|
|
// manually reduce u at first step
|
|
if msb(&u) == 127 {
|
|
Add(&u, &x127x631, &u)
|
|
}
|
|
|
|
Mul(x, d, t)
|
|
Add(c, t, c)
|
|
}
|
|
*b = *c
|
|
}
|
|
|
|
func xN(n int) *GF127 {
|
|
if n < 64 {
|
|
return &GF127{1 << uint(n), 0}
|
|
}
|
|
return &GF127{0, 1 << uint(n-64)}
|
|
}
|
|
|
|
func msb(a *GF127) (x int) {
|
|
x = bits.LeadingZeros64(a[1])
|
|
if x == 64 {
|
|
x = bits.LeadingZeros64(a[0]) + 64
|
|
}
|
|
return 127 - x
|
|
}
|
|
|
|
// Mul1 copies a to b.
|
|
func Mul1(a, b *GF127) {
|
|
b[0] = a[0]
|
|
b[1] = a[1]
|
|
}
|
|
|
|
// And sets c to a & b (bitwise-and).
|
|
func And(a, b, c *GF127) {
|
|
c[0] = a[0] & b[0]
|
|
c[1] = a[1] & b[1]
|
|
}
|
|
|
|
// Add sets c to a+b.
|
|
func Add(a, b, c *GF127) {
|
|
c[0] = a[0] ^ b[0]
|
|
c[1] = a[1] ^ b[1]
|
|
}
|
|
|
|
// Mul sets c to a*b.
|
|
func Mul(a, b, c *GF127) {
|
|
r := new(GF127)
|
|
d := *a
|
|
for i := uint(0); i < 64; i++ {
|
|
if b[0]&(1<<i) != 0 {
|
|
Add(r, &d, r)
|
|
}
|
|
Mul10(&d, &d)
|
|
}
|
|
for i := uint(0); i < 63; i++ {
|
|
if b[1]&(1<<i) != 0 {
|
|
Add(r, &d, r)
|
|
}
|
|
Mul10(&d, &d)
|
|
}
|
|
*c = *r
|
|
}
|
|
|
|
// Mul10 sets b to a*x.
|
|
func Mul10(a, b *GF127) {
|
|
c := a[0] >> 63
|
|
b[0] = a[0] << 1
|
|
b[1] = (a[1] << 1) ^ c
|
|
|
|
mask := b[1] & msb64
|
|
b[0] ^= mask | (mask >> 63)
|
|
b[1] ^= mask
|
|
}
|
|
|
|
// Mul11 sets b to a*(x+1).
|
|
func Mul11(a, b *GF127) {
|
|
c := a[0] >> 63
|
|
b[0] = a[0] ^ (a[0] << 1)
|
|
b[1] = a[1] ^ (a[1] << 1) ^ c
|
|
|
|
mask := b[1] & msb64
|
|
b[0] ^= mask | (mask >> 63)
|
|
b[1] ^= mask
|
|
}
|