(length)
| 67 | } |
| 68 | |
| 69 | function validateKeyLength(length) { |
| 70 | if (length !== 128 && length !== 192 && length !== 256) |
| 71 | throw lazyDOMException('Invalid key length', 'DataError'); |
| 72 | } |
| 73 | |
| 74 | function getVariant(name, length) { |
| 75 | switch (name) { |
no test coverage detected
searching dependent graphs…