| 54 | } |
| 55 | |
| 56 | void RSAFunction::DEREncodePublicKey(BufferedTransformation &bt) const |
| 57 | { |
| 58 | DERSequenceEncoder seq(bt); |
| 59 | m_n.DEREncode(seq); |
| 60 | m_e.DEREncode(seq); |
| 61 | seq.MessageEnd(); |
| 62 | } |
| 63 | |
| 64 | Integer RSAFunction::ApplyFunction(const Integer &x) const |
| 65 | { |
nothing calls this directly
no test coverage detected