(bytes, length)
| 1129 | * @returns {string} |
| 1130 | */ |
| 1131 | export function encodeBase64(bytes, length) { |
| 1132 | return base64_encode(bytes, length); |
| 1133 | } |
| 1134 | |
| 1135 | /** |
| 1136 | * Decodes a base64 encoded string to up to len bytes of output, using the custom bcrypt alphabet. |
nothing calls this directly
no test coverage detected