forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(encoding): add base64 (denoland/deno#5811)
- Loading branch information
1 parent
01311d8
commit 8bfe459
Showing
2 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. | ||
|
||
/** | ||
* Converts given data with base64 encoding | ||
* @param data input to encode | ||
*/ | ||
export function encode(data: string | ArrayBuffer): string { | ||
if (typeof data === "string") { | ||
return window.btoa(data); | ||
} else { | ||
const d = new Uint8Array(data); | ||
let dataString = ""; | ||
for (let i = 0; i < d.length; ++i) { | ||
dataString += String.fromCharCode(d[i]); | ||
} | ||
|
||
return window.btoa(dataString); | ||
} | ||
} | ||
|
||
/** | ||
* Converts given base64 encoded data back to original | ||
* @param data input to decode | ||
*/ | ||
export function decode(data: string): ArrayBuffer { | ||
const binaryString = decodeString(data); | ||
const binary = new Uint8Array(binaryString.length); | ||
for (let i = 0; i < binary.length; ++i) { | ||
binary[i] = binaryString.charCodeAt(i); | ||
} | ||
|
||
return binary.buffer; | ||
} | ||
|
||
/** | ||
* Decodes data assuming the output is in string type | ||
* @param data input to decode | ||
*/ | ||
export function decodeString(data: string): string { | ||
return window.atob(data); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. | ||
|
||
const { test } = Deno; | ||
import { assertEquals } from "../testing/asserts.ts"; | ||
import { encode, decode, decodeString } from "./base64.ts"; | ||
|
||
const testsetString = [ | ||
["", ""], | ||
["f", "Zg=="], | ||
["fo", "Zm8="], | ||
["foo", "Zm9v"], | ||
["foob", "Zm9vYg=="], | ||
["fooba", "Zm9vYmE="], | ||
["foobar", "Zm9vYmFy"], | ||
]; | ||
|
||
const testsetBinary = [ | ||
[new TextEncoder().encode("\x00"), "AA=="], | ||
[new TextEncoder().encode("\x00\x00"), "AAA="], | ||
[new TextEncoder().encode("\x00\x00\x00"), "AAAA"], | ||
[new TextEncoder().encode("\x00\x00\x00\x00"), "AAAAAA=="], | ||
]; | ||
|
||
test("[encoding/base64] testBase64EncodeString", () => { | ||
for (const [input, output] of testsetString) { | ||
assertEquals(encode(input), output); | ||
} | ||
}); | ||
|
||
test("[encoding/base64] testBase64DecodeString", () => { | ||
for (const [input, output] of testsetString) { | ||
assertEquals(decodeString(output), input); | ||
} | ||
}); | ||
|
||
test("[encoding/base64] testBase64EncodeBinary", () => { | ||
for (const [input, output] of testsetBinary) { | ||
assertEquals(encode(input), output); | ||
} | ||
}); | ||
|
||
test("[encoding/base64] testBase64DecodeBinary", () => { | ||
for (const [input, output] of testsetBinary) { | ||
const outputBinary = new Uint8Array(decode(output as string)); | ||
assertEquals(outputBinary, input as Uint8Array); | ||
} | ||
}); |