github.com/consensys/gnark-crypto@v0.14.0/ecc/bw6-761/fr/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 fr contains field arithmetic operations for modulus = 0x1ae3a4...000001.
    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 [6]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] = 258664426012969094010652733694893533536393512754914660539884262666720468348340822774968888139573360124440321458177
    48  //	q[base16] = 0x1ae3a4617c510eac63b05c06ca1493b1a22d9f300f5138f1ef3622fba094800170b5d44300000008508c00000000001
    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 fr