1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
import {
sha,
MD5,
MD4,
SHA1,
SHA256,
SHA384,
SHA512,
SHA512_256,
gc,
} from "bun";
import { it, expect, describe } from "bun:test";
import { readFileSync } from "fs";
describe("crypto", () => {
for (let Hash of [MD5, MD4, SHA1, SHA256, SHA384, SHA512, SHA512_256]) {
for (let [input, label] of [
["hello world", '"hello world"'],
["hello world".repeat(20).slice(), '"hello world" x 20'],
["", "empty string"],
["a", '"a"'],
]) {
describe(label, () => {
gc(true);
it(`${Hash.name} base64`, () => {
gc(true);
const result = new Hash();
result.update(input);
expect(typeof result.digest("base64")).toBe("string");
gc(true);
});
it(`${Hash.name} hash base64`, () => {
Hash.hash(input, "base64");
gc(true);
});
it(`${Hash.name} hex`, () => {
const result = new Hash();
result.update(input);
expect(typeof result.digest("hex")).toBe("string");
gc(true);
});
it(`${Hash.name} hash hex`, () => {
expect(typeof Hash.hash(input, "hex")).toBe("string");
gc(true);
});
it(`${Hash.name} buffer`, () => {
var buf = new Uint8Array(256);
const result = new Hash();
result.update(input);
expect(result.digest(buf)).toBe(buf);
expect(buf[0] != 0).toBe(true);
gc(true);
});
it(`${Hash.name} buffer`, () => {
var buf = new Uint8Array(256);
expect(Hash.hash(input, buf) instanceof Uint8Array).toBe(true);
gc(true);
});
});
}
}
});
|