Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for p521MontgomeryDomainFieldElement (4.3 sec)

  1. src/crypto/internal/nistec/fiat/p521.go

    //
    // The zero value is a valid zero element.
    type P521Element struct {
    	// Values are represented internally always in the Montgomery domain, and
    	// converted in Bytes and SetBytes.
    	x p521MontgomeryDomainFieldElement
    }
    
    const p521ElementLen = 66
    
    type p521UntypedFieldElement = [9]uint64
    
    // One sets e = 1, and returns e.
    func (e *P521Element) One() *P521Element {
    	p521SetOne(&e.x)
    	return e
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top