blob: 74438bd77ec2a25e9e640f4704e90d587dfc1e8c (
plain)
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
|
/* eslint-disable @typescript-eslint/no-explicit-any */
const { args } = Deno;
import { createHash, SupportedAlgorithm } from "../../std/hash/mod.ts";
import { Md5 } from "../../std/hash/md5.ts";
import { Sha1 } from "../../std/hash/sha1.ts";
import { Sha256 } from "../../std/hash/sha256.ts";
import { Sha512 } from "../../std/hash/sha512.ts";
import { Sha3_224, Sha3_256, Sha3_384, Sha3_512 } from "../../std/hash/sha3.ts";
if (args.length < 3) Deno.exit(0);
const method = args[0];
const alg = args[1];
const inputFile = args[2];
function getJsHash(alg: string): any {
switch (alg) {
case "md5":
return new Md5();
case "sha1":
return new Sha1();
case "sha224":
return new Sha256(true);
case "sha256":
return new Sha256();
case "sha3-224":
return new Sha3_224();
case "sha3-256":
return new Sha3_256();
case "sha3-384":
return new Sha3_384();
case "sha3-512":
return new Sha3_512();
case "sha512":
return new Sha512();
default:
return null;
}
}
const f = Deno.openSync(inputFile, { read: true });
const buffer = Deno.readAllSync(f);
f.close();
let hash = null;
console.time("hash");
if (method === "rust") {
hash = createHash(alg as SupportedAlgorithm);
} else if (method === "js") {
hash = getJsHash(alg);
}
if (hash === null) {
console.log(`unknown hash: ${alg}`);
Deno.exit(1);
}
hash.update(buffer);
hash.digest();
console.timeEnd("hash");
|