| 106 | } |
| 107 | |
| 108 | void SimpleKeyingInterface::SetKeyWithIV(const byte *key, size_t length, const byte *iv, size_t ivLength) |
| 109 | { |
| 110 | SetKey(key, length, MakeParameters(Name::IV(), ConstByteArrayParameter(iv, ivLength))); |
| 111 | } |
| 112 | |
| 113 | void SimpleKeyingInterface::ThrowIfInvalidKeyLength(size_t length) |
| 114 | { |