(data: Uint8Array)
| 22 | // --- Base64 helpers --- |
| 23 | |
| 24 | export function encodeBase64(data: Uint8Array): string { |
| 25 | return sodium.to_base64(data, sodium.base64_variants.ORIGINAL); |
| 26 | } |
| 27 | |
| 28 | export function decodeBase64(str: string): Uint8Array { |
| 29 | return sodium.from_base64(str, sodium.base64_variants.ORIGINAL); |
no outgoing calls
no test coverage detected