| 118 | } |
| 119 | |
| 120 | void DES::Base::UncheckedSetKey(const byte *userKey, unsigned int length, const NameValuePairs &) |
| 121 | { |
| 122 | AssertValidKeyLength(length); |
| 123 | |
| 124 | RawSetKey(GetCipherDirection(), userKey); |
| 125 | } |
| 126 | |
| 127 | #ifndef CRYPTOPP_IMPORTS |
| 128 |
nothing calls this directly
no test coverage detected