(algorithm)
| 73 | }; |
| 74 | |
| 75 | function validateRsaOaepAlgorithm(algorithm) { |
| 76 | if (algorithm.label !== undefined) { |
| 77 | validateMaxBufferLength(algorithm.label, 'algorithm.label'); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | function rsaOaepCipher(mode, key, data, algorithm) { |
| 82 | validateRsaOaepAlgorithm(algorithm); |
no test coverage detected
searching dependent graphs…