GetParameters returns the DSA parameters (p, q, g)
()
| 187 | |
| 188 | // GetParameters returns the DSA parameters (p, q, g) |
| 189 | func (dsa *dsa) GetParameters() parameters { |
| 190 | return dsa.parameters |
| 191 | } |
| 192 | |
| 193 | // GetPrivateKey returns the private Key (x) |
| 194 | func (dsa *dsa) GetPrivateKey() *big.Int { |
no outgoing calls