| 150 | } |
| 151 | |
| 152 | type nistParameters struct { |
| 153 | privateKey []byte |
| 154 | x, y *big.Int // public key |
| 155 | curveID CurveID |
| 156 | } |
| 157 | |
| 158 | func (p *nistParameters) CurveID() CurveID { |
| 159 | return p.curveID |
nothing calls this directly
no outgoing calls
no test coverage detected