8 lines
251 B
Go
8 lines
251 B
Go
|
// Package gf127 implements the GF(2^127) arithmetic
|
||
|
// modulo reduction polynomial x^127 + x^63 + 1 .
|
||
|
// gf127.go contains common definitions.
|
||
|
// Other files contain architecture-specific implementations.
|
||
|
//
|
||
|
// Copyright 2019 (c) NSPCC
|
||
|
package gf127
|