| 28 | } |
| 29 | |
| 30 | void ElGamalCryptoPublicKey::DEREncode(BufferedTransformation &bt) const |
| 31 | { |
| 32 | DERSequenceEncoder seq(bt); |
| 33 | p.DEREncode(seq); |
| 34 | g.DEREncode(seq); |
| 35 | y.DEREncode(seq); |
| 36 | } |
| 37 | |
| 38 | void ElGamalCryptoPublicKey::Precompute(unsigned int precomputationStorage) |
| 39 | { |
nothing calls this directly
no outgoing calls
no test coverage detected