\brief Provides the fixed ciphertext length, if one exists \return the fixed ciphertext length if one exists, otherwise 0 \details "Fixed" here means length of ciphertext does not depend on length of plaintext. In this case, it usually does depend on the key length.
| 2317 | //! \details "Fixed" here means length of ciphertext does not depend on length of plaintext. |
| 2318 | //! In this case, it usually does depend on the key length. |
| 2319 | virtual size_t FixedCiphertextLength() const {return 0;} |
| 2320 | |
| 2321 | //! \brief Provides the maximum plaintext length given a fixed ciphertext length |
| 2322 | //! \return maximum plaintext length given the fixed ciphertext length, if one exists, |
no outgoing calls
no test coverage detected