(str: string)
| 26 | } |
| 27 | |
| 28 | export function decodeBase64(str: string): Uint8Array { |
| 29 | return sodium.from_base64(str, sodium.base64_variants.ORIGINAL); |
| 30 | } |
| 31 | |
| 32 | export function encodeBase64Url(data: Uint8Array): string { |
| 33 | return sodium.to_base64(data, sodium.base64_variants.URLSAFE_NO_PADDING); |
no outgoing calls
no test coverage detected