Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for p256CompressedLength (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. lib/fips140/v1.26.0.zip

    than all other encodings. func (p *P256Point) BytesCompressed() []byte { // This function is outlined to make the allocations inline in the caller // rather than happen on the heap. var out [p256CompressedLength]byte return p.bytesCompressed(&out) } func (p *P256Point) bytesCompressed(out *[p256CompressedLength]byte) []byte { if p.z.IsZero() == 1 { return append(out[:0], 0) } zinv := new(fiat.P256Element).Invert(&p.z) x := new(fiat.P256Element).Mul(&p.x, zinv) y := new(fiat.P256Element).Mul(&p.y, zinv)...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
  2. lib/fips140/v1.0.0-c2097c7c.zip

    than all other encodings. func (p *P256Point) BytesCompressed() []byte { // This function is outlined to make the allocations inline in the caller // rather than happen on the heap. var out [p256CompressedLength]byte return p.bytesCompressed(&out) } func (p *P256Point) bytesCompressed(out *[p256CompressedLength]byte) []byte { if p.z.IsZero() == 1 { return append(out[:0], 0) } zinv := new(fiat.P256Element).Invert(&p.z) x := new(fiat.P256Element).Mul(&p.x, zinv) y := new(fiat.P256Element).Mul(&p.y, zinv)...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Sep 25 19:53:19 GMT 2025
    - 642.7K bytes
    - Click Count (0)
Back to Top