| 117 | } |
| 118 | |
| 119 | void SimpleKeyingInterface::ThrowIfResynchronizable() |
| 120 | { |
| 121 | if (IsResynchronizable()) |
| 122 | throw InvalidArgument(GetAlgorithm().AlgorithmName() + ": this object requires an IV"); |
| 123 | } |
| 124 | |
| 125 | void SimpleKeyingInterface::ThrowIfInvalidIV(const byte *iv) |
| 126 | { |
no test coverage detected