Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for p256Table (0.09 sec)

  1. lib/fips140/v1.0.0.zip

    If n is 0, p is set to the identity point. func (table *p256Table) Select(p *P256Point, n uint8) { if n > 16 { panic("nistec: internal error: p256Table called with out-of-bounds value") } p.Set(NewP256Point()) for i := uint8(1); i <= 16; i++ { cond := subtle.ConstantTimeByteEq(i, n) p.Select(&table[i-1], p, cond) } } // Compute populates the table to the first 16 multiples of q. func (table *p256Table) Compute(q *P256Point) *p256Table { table[0].Set(q) for i := 1; i < 16; i += 2 { table[i].Double(&table[i/2])...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top