| 1134 | FixedRoundsCipherFactory(unsigned int keylen=0) : m_keylen(keylen?keylen:E::DEFAULT_KEYLENGTH) {} |
| 1135 | unsigned int BlockSize() const {return E::BLOCKSIZE;} |
| 1136 | unsigned int KeyLength() const {return m_keylen;} |
| 1137 | |
| 1138 | BlockTransformation* NewEncryption(const byte *keyStr) const |
| 1139 | {return new E(keyStr, m_keylen);} |
no outgoing calls
no test coverage detected