Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for p384NonMontgomeryDomainFieldElement (0.48 sec)

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

    	// rather than happen on the heap.
    	var out [p384ElementLen]byte
    	return e.bytes(&out)
    }
    
    func (e *P384Element) bytes(out *[p384ElementLen]byte) []byte {
    	var tmp p384NonMontgomeryDomainFieldElement
    	p384FromMontgomery(&tmp, &e.x)
    	p384ToBytes(out, (*p384UntypedFieldElement)(&tmp))
    	p384InvertEndianness(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/p384_fiat64.go

    type p384MontgomeryDomainFieldElement [6]uint64
    
    // The type p384NonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type p384NonMontgomeryDomainFieldElement [6]uint64
    
    // p384CmovznzU64 is a single-word conditional move.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
Back to top