| 111 | } |
| 112 | |
| 113 | void SimpleKeyingInterface::ThrowIfInvalidKeyLength(size_t length) |
| 114 | { |
| 115 | if (!IsValidKeyLength(length)) |
| 116 | throw InvalidKeyLength(GetAlgorithm().AlgorithmName(), length); |
| 117 | } |
| 118 | |
| 119 | void SimpleKeyingInterface::ThrowIfResynchronizable() |
| 120 | { |
no test coverage detected