- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for p256AffineTable (0.12 sec)
-
lib/fips140/v1.0.0-c2097c7c.zip
to an undefined value. func (table *p256AffineTable) Select(p *p256AffinePoint, n uint8) { if n > 32 { panic("nistec: internal error: p256AffineTable.Select called with out-of-bounds value") } for i := uint8(1); i <= 32; i++ { cond := subtle.ConstantTimeByteEq(i, n) p.x.Select(&table[i-1].x, &p.x, cond) p.y.Select(&table[i-1].y, &p.y, cond) } } // p256GeneratorTables is a series of precomputed multiples of G, the canonical // generator. The first p256AffineTable contains multiples of G. The second...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
set to an undefined value. func (table *p256AffineTable) Select(p *p256AffinePoint, n uint8) { if n > 32 { panic("nistec: internal error: p256AffineTable.Select called with out-of-bounds value") } for i := uint8(1); i <= 32; i++ { cond := constanttime.ByteEq(i, n) p.x.Select(&table[i-1].x, &p.x, cond) p.y.Select(&table[i-1].y, &p.y, cond) } } // p256GeneratorTables is a series of precomputed multiples of G, the canonical // generator. The first p256AffineTable contains multiples of G. The second one...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)