keccak/gen.go

117 lines
2.3 KiB
Go
Raw Normal View History

2015-01-01 00:40:56 +00:00
// +build ignore
package main
import (
"fmt"
"os"
"text/template"
)
var roundc [24]uint64
var rotc [5][5]int
func main() {
// Round constants
rc := uint8(1)
for i := 0; i < 24; i++ {
for j := 0; j <= 6; j++ {
roundc[i] |= uint64(rc&1) << (1<<uint(j) - 1)
rc = rc<<1 ^ 0x71&uint8(int8(rc)>>7)
}
}
// Rotation constants
x, y := 1, 0
for i := 1; i < 25; i++ {
2015-01-01 07:59:40 +00:00
rotc[x][y] = (i * (i + 1) / 2) % 64
2015-01-01 00:40:56 +00:00
x, y = y, (2*x+3*y)%5
}
err := tmpl.Execute(os.Stdout, nil)
2015-01-01 00:40:56 +00:00
if err != nil {
fmt.Fprintln(os.Stderr, err)
2015-01-01 00:40:56 +00:00
}
}
func count(n int) []int {
var out = make([]int, n)
2015-01-01 07:59:40 +00:00
for i := 0; i < n; i++ {
2015-01-01 00:40:56 +00:00
out[i] = i
}
return out
}
2015-01-01 08:41:19 +00:00
func add(a, b int) int { return a + b }
func sub(a, b int) int { return a - b }
func mul(a, b int) int { return a * b }
func mod(a, b int) int { return a % b }
2015-01-01 00:40:56 +00:00
2015-01-01 08:41:19 +00:00
func afunc(x, y int) string {
2015-01-01 11:10:11 +00:00
return fmt.Sprintf("a[%d]", y%5*5+x%5)
2015-01-01 00:40:56 +00:00
}
2015-01-01 08:41:19 +00:00
func bfunc(x, y int) string {
return fmt.Sprintf("b%d%d", x%5, y%5)
2015-01-01 00:40:56 +00:00
}
func rotcfunc(x, y int) int {
return rotc[x%5][y%5]
}
2015-01-01 00:40:56 +00:00
var funcs = template.FuncMap{
"count": count,
2015-01-01 07:59:40 +00:00
"add": add,
"sub": sub,
"mul": mul,
2015-01-01 08:41:19 +00:00
"mod": mod,
"a": afunc,
"b": bfunc,
"rotc": rotcfunc,
2015-01-01 00:40:56 +00:00
}
var tmpl = template.Must(template.New("keccak").Funcs(funcs).Parse(`
// Generated from go run gen.go
// DO NOT EDIT
package keccak
2015-01-01 00:52:34 +00:00
// round implements one round of the keccak-f[1600] permutation.
func roundGo(a *[25]uint64) {
2015-01-01 00:40:56 +00:00
{{ range $x := count 5 }}
var b{{$x}}0, b{{$x}}1, b{{$x}}2, b{{$x}}3, b{{$x}}4 uint64
2015-01-01 00:40:56 +00:00
{{ end }}
// Theta
var c0, c1, c2, c3, c4 uint64
{{ range $x := count 5 }}
c{{$x}} = {{a $x 0}} ^ {{a $x 1}} ^ {{a $x 2}} ^ {{a $x 3}} ^ {{a $x 4}}
2015-01-01 00:40:56 +00:00
{{ end }}
var d uint64
2015-01-01 00:40:56 +00:00
{{ range $x := count 5 }}
{{ $x4 := mod (add $x 4) 5 }}
2015-01-01 08:41:19 +00:00
{{ $x1 := mod (add $x 1) 5 }}
d = c{{$x4}} ^ (c{{$x1}}<<1 | c{{$x1}}>>63)
2015-01-01 00:52:34 +00:00
{{ range $y := count 5 }}
2015-01-01 08:41:19 +00:00
{{b $x $y}} = {{a $x $y}} ^ d
2015-01-01 00:52:34 +00:00
{{ end }}
2015-01-01 00:40:56 +00:00
{{ end }}
// Rho / Pi / Chi / output
2015-01-01 00:40:56 +00:00
{{ range $y := count 5 }}
{{ range $x := count 5 }}
2015-01-01 08:41:19 +00:00
{{ $x0 := add $x (mul $y 3) }}
{{ $y0 := $x }}
{{ $b := b $x0 $y0 }}
{{ $r := rotc $x0 $y0 }}
c{{$x}} = {{$b}}<<{{$r}} | {{$b}}>>{{sub 64 $r}}
{{ end }}
{{ range $x := count 5 }}
{{ $x1 := mod (add $x 1) 5 }}
{{ $x2 := mod (add $x 2) 5 }}
{{a $x $y}} = c{{$x}} ^ (c{{$x2}} &^ c{{$x1}})
2015-01-01 00:40:56 +00:00
{{ end }}
{{ end }}
}
`))