2022-09-05 16:57:11 -04:00
|
|
|
import type { BytesLike } from "./data.js";
|
2022-09-15 22:58:45 -04:00
|
|
|
/**
|
2022-11-30 15:44:23 -05:00
|
|
|
* Decodes the base-64 encoded %%value%%.
|
2023-02-12 22:14:26 -05:00
|
|
|
*
|
|
|
|
* @example:
|
|
|
|
* // The decoded value is always binary data...
|
|
|
|
* result = decodeBase64("SGVsbG8gV29ybGQhIQ==")
|
|
|
|
* //_result:
|
|
|
|
*
|
|
|
|
* // ...use toUtf8String to convert it to a string.
|
|
|
|
* toUtf8String(result)
|
|
|
|
* //_result:
|
|
|
|
*
|
|
|
|
* // Decoding binary data
|
|
|
|
* decodeBase64("EjQ=")
|
|
|
|
* //_result:
|
2022-09-15 22:58:45 -04:00
|
|
|
*/
|
2022-11-30 15:44:23 -05:00
|
|
|
export declare function decodeBase64(value: string): Uint8Array;
|
2022-09-15 22:58:45 -04:00
|
|
|
/**
|
2022-11-30 15:44:23 -05:00
|
|
|
* Encodes %%data%% as a base-64 encoded string.
|
2023-02-12 22:14:26 -05:00
|
|
|
*
|
|
|
|
* @example:
|
|
|
|
* // Encoding binary data as a hexstring
|
|
|
|
* encodeBase64("0x1234")
|
|
|
|
* //_result:
|
|
|
|
*
|
|
|
|
* // Encoding binary data as a Uint8Array
|
|
|
|
* encodeBase64(new Uint8Array([ 0x12, 0x34 ]))
|
|
|
|
* //_result:
|
|
|
|
*
|
|
|
|
* // The input MUST be data...
|
|
|
|
* encodeBase64("Hello World!!")
|
|
|
|
* //_error:
|
|
|
|
*
|
|
|
|
* // ...use toUtf8Bytes for this.
|
|
|
|
* encodeBase64(toUtf8Bytes("Hello World!!"))
|
|
|
|
* //_result:
|
2022-09-15 22:58:45 -04:00
|
|
|
*/
|
2022-09-05 16:57:11 -04:00
|
|
|
export declare function encodeBase64(data: BytesLike): string;
|
|
|
|
//# sourceMappingURL=base64.d.ts.map
|