Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for p384Polynomial (0.76 sec)

  1. src/crypto/internal/nistec/p384.go

    	})
    	return _p384B
    }
    
    // p384Polynomial sets y2 to x³ - 3x + b, and returns y2.
    func p384Polynomial(y2, x *fiat.P384Element) *fiat.P384Element {
    	y2.Square(x)
    	y2.Mul(y2, x)
    
    	threeX := new(fiat.P384Element).Add(x, x)
    	threeX.Add(threeX, x)
    	y2.Sub(y2, threeX)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
Back to top