Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for p256Polynomial (0.44 sec)

  1. lib/fips140/v1.0.0-c2097c7c.zip

    0xf6, 0x3b, 0xce, 0x3c, 0x3e, 0x27, 0xd2, 0x60, 0x4b}) }) return _p256B } // p256Polynomial sets y2 to x³ - 3x + b, and returns y2. func p256Polynomial(y2, x *fiat.P256Element) *fiat.P256Element { y2.Square(x) y2.Mul(y2, x) threeX := new(fiat.P256Element).Add(x, x) threeX.Add(threeX, x) y2.Sub(y2, threeX) return y2.Add(y2, p256B()) } func p256CheckOnCurve(x, y *fiat.P256Element) error { // y² = x³ - 3x + b rhs := p256Polynomial(new(fiat.P256Element), x) lhs := new(fiat.P256Element).Square(y) if rhs.Equal(lhs)...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.zip

    0xf6, 0x3b, 0xce, 0x3c, 0x3e, 0x27, 0xd2, 0x60, 0x4b}) }) return _p256B } // p256Polynomial sets y2 to x³ - 3x + b, and returns y2. func p256Polynomial(y2, x *fiat.P256Element) *fiat.P256Element { y2.Square(x) y2.Mul(y2, x) threeX := new(fiat.P256Element).Add(x, x) threeX.Add(threeX, x) y2.Sub(y2, threeX) return y2.Add(y2, p256B()) } func p256CheckOnCurve(x, y *fiat.P256Element) error { // y² = x³ - 3x + b rhs := p256Polynomial(new(fiat.P256Element), x) lhs := new(fiat.P256Element).Square(y) if rhs.Equal(lhs)...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top