Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for p521NonMontgomeryDomainFieldElement (0.47 sec)

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

    	// rather than happen on the heap.
    	var out [p521ElementLen]byte
    	return e.bytes(&out)
    }
    
    func (e *P521Element) bytes(out *[p521ElementLen]byte) []byte {
    	var tmp p521NonMontgomeryDomainFieldElement
    	p521FromMontgomery(&tmp, &e.x)
    	p521ToBytes(out, (*p521UntypedFieldElement)(&tmp))
    	p521InvertEndianness(out[:])
    	return out[:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p521_fiat64.go

    type p521MontgomeryDomainFieldElement [9]uint64
    
    // The type p521NonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
Back to top