crypto-utils-js
Version:
JavaScript library for encryption / decryption.
13 lines (11 loc) • 358 B
text/typescript
/*
* Base64 is a group of binary-to-text encoding
* schemes that represent binary data
* (more specifically, a sequence of 8-bit bytes)
* in sequences of 24 bits that can be represented
* by four 6-bit Base64 digits.
*
* The more data, the larger hash!
* VGhlIG1vcmUgZGF0YSwgdGhlIGxhcmdlciBoYXNoIQ==
*/
export { base64 } from './base64';