github.com/consensys/gnark-crypto@v0.14.0/ecc/bw6-761/fp/doc.go (about) 1 // Copyright 2020 ConsenSys Software Inc. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 // Code generated by consensys/gnark-crypto DO NOT EDIT 16 17 // Package fp contains field arithmetic operations for modulus = 0x122e82...00008b. 18 // 19 // The API is similar to math/big (big.Int), but the operations are significantly faster (up to 20x for the modular multiplication on amd64, see also https://hackmd.io/@gnark/modular_multiplication) 20 // 21 // The modulus is hardcoded in all the operations. 22 // 23 // Field elements are represented as an array, and assumed to be in Montgomery form in all methods: 24 // 25 // type Element [12]uint64 26 // 27 // # Usage 28 // 29 // Example API signature: 30 // 31 // // Mul z = x * y (mod q) 32 // func (z *Element) Mul(x, y *Element) *Element 33 // 34 // and can be used like so: 35 // 36 // var a, b Element 37 // a.SetUint64(2) 38 // b.SetString("984896738") 39 // a.Mul(a, b) 40 // a.Sub(a, a) 41 // .Add(a, b) 42 // .Inv(a) 43 // b.Exp(b, new(big.Int).SetUint64(42)) 44 // 45 // Modulus q = 46 // 47 // q[base10] = 6891450384315732539396789682275657542479668912536150109513790160209623422243491736087683183289411687640864567753786613451161759120554247759349511699125301598951605099378508850372543631423596795951899700429969112842764913119068299 48 // q[base16] = 0x122e824fb83ce0ad187c94004faff3eb926186a81d14688528275ef8087be41707ba638e584e91903cebaff25b423048689c8ed12f9fd9071dcd3dc73ebff2e98a116c25667a8f8160cf8aeeaf0a437e6913e6870000082f49d00000000008b 49 // 50 // # Warning 51 // 52 // This code has not been audited and is provided as-is. In particular, there is no security guarantees such as constant time implementation or side-channel attack resistance. 53 package fp