| 164 | } |
| 165 | |
| 166 | unsigned 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 | |
| 174 | bool PK_VerifierWithRecovery::Verify(const byte *message, unsigned int messageLength, const byte *signature) |
| 175 | { |
nothing calls this directly
no outgoing calls
no test coverage detected