MCPcopy Create free account
hub / github.com/Tripwire/tripwire-open-source / DEREncode

Method DEREncode

src/cryptlib/elgamal.cpp:30–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30void ElGamalCryptoPublicKey::DEREncode(BufferedTransformation &bt) const
31{
32 DERSequenceEncoder seq(bt);
33 p.DEREncode(seq);
34 g.DEREncode(seq);
35 y.DEREncode(seq);
36}
37
38void ElGamalCryptoPublicKey::Precompute(unsigned int precomputationStorage)
39{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected