- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for p256UncompressedLeng (0.14 seconds)
-
lib/fips140/v1.0.0-c2097c7c.zip
infinity is shorter than all other encodings. func (p *P256Point) Bytes() []byte { // This function is outlined to make the allocations inline in the caller // rather than happen on the heap. var out [p256UncompressedLeng]byte return p.bytes(&out) } func (p *P256Point) bytes(out *[p256UncompressedLeng]byte) []byte { // The SEC 1 representation of the point at infinity is a single zero byte, // and only infinity has z = 0. if p.z.IsZero() == 1 { return append(out[:0], 0) } zinv := new(fiat.P256Element).Invert(&p.z)...
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Sep 25 19:53:19 GMT 2025 - 642.7K bytes - Click Count (0) -
lib/fips140/v1.1.0-rc1.zip
infinity is shorter than all other encodings. func (p *P256Point) Bytes() []byte { // This function is outlined to make the allocations inline in the caller // rather than happen on the heap. var out [p256UncompressedLeng]byte return p.bytes(&out) } func (p *P256Point) bytes(out *[p256UncompressedLeng]byte) []byte { // The SEC 1 representation of the point at infinity is a single zero byte, // and only infinity has z = 0. if p.z.IsZero() == 1 { return append(out[:0], 0) } zinv := new(fiat.P256Element).Invert(&p.z)...
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Dec 11 16:27:41 GMT 2025 - 663K bytes - Click Count (0)