github.com/consensys/gnark-crypto@v0.14.0/ecc/bw6-633/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 = 0x126633...70000d. 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 [10]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] = 20494478644167774678813387386538961497669590920908778075528754551012016751717791778743535050360001387419576570244406805463255765034468441182772056330021723098661967429339971741066259394985997 48 // q[base16] = 0x126633cc0f35f63fc1a174f01d72ab5a8fcd8c75d79d2c74e59769ad9bbda2f8152a6c0fadea490b8da9f5e83f57c497e0e8850edbda407d7b5ce7ab839c2253d369bd31147f73cd74916ea4570000d 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