| 156 | } |
| 157 | |
| 158 | unsigned int PK_FixedLengthCryptoSystem::CipherTextLength(unsigned int plainTextLength) const |
| 159 | { |
| 160 | if (plainTextLength <= MaxPlainTextLength()) |
| 161 | return CipherTextLength(); |
| 162 | else |
| 163 | return 0; |
| 164 | } |
| 165 | |
| 166 | unsigned int PK_FixedLengthDecryptor::Decrypt(const byte *cipherText, unsigned int cipherTextLength, byte *plainText) |
| 167 | { |
no outgoing calls
no test coverage detected