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

Method Decrypt

src/cryptlib/cryptlib.cpp:166–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164}
165
166unsigned int PK_FixedLengthDecryptor::Decrypt(const byte *cipherText, unsigned int cipherTextLength, byte *plainText)
167{
168 if (cipherTextLength != CipherTextLength())
169 return 0;
170
171 return Decrypt(cipherText, plainText);
172}
173
174bool PK_VerifierWithRecovery::Verify(const byte *message, unsigned int messageLength, const byte *signature)
175{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected