\brief Provides the direction of the cipher \return ENCRYPTION if IsForwardTransformation() is true, DECRYPTION otherwise \sa IsForwardTransformation(), IsPermutation()
| 815 | //! \return ENCRYPTION if IsForwardTransformation() is true, DECRYPTION otherwise |
| 816 | //! \sa IsForwardTransformation(), IsPermutation() |
| 817 | inline CipherDir GetCipherDirection() const {return IsForwardTransformation() ? ENCRYPTION : DECRYPTION;} |
| 818 | }; |
| 819 | |
| 820 | //! \class StreamTransformation |
no test coverage detected