| 1136 | unsigned int KeyLength() const {return m_keylen;} |
| 1137 | |
| 1138 | BlockTransformation* NewEncryption(const byte *keyStr) const |
| 1139 | {return new E(keyStr, m_keylen);} |
| 1140 | BlockTransformation* NewDecryption(const byte *keyStr) const |
| 1141 | {return new D(keyStr, m_keylen);} |
| 1142 |
no outgoing calls
no test coverage detected