MCPcopy Create free account
hub / github.com/LUX-Core/lux / DEREncodePublicKey

Method DEREncodePublicKey

src/cryptopp/rsa.cpp:56–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54}
55
56void 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
64Integer RSAFunction::ApplyFunction(const Integer &x) const
65{

Callers

nothing calls this directly

Calls 2

MessageEndMethod · 0.80
DEREncodeMethod · 0.45

Tested by

no test coverage detected