(V)
| 264 | } |
| 265 | |
| 266 | function validateCShakeOutputLength(V) { |
| 267 | if (!isUint32(numBitsToBytes(V) * 8)) { |
| 268 | throw lazyDOMException( |
| 269 | 'Invalid CShakeParams outputLength', |
| 270 | 'OperationError'); |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | function bufferSourceEqualsAscii(V, string) { |
| 275 | if (V.byteLength !== string.length) return false; |
nothing calls this directly
no test coverage detected
searching dependent graphs…