forked from bcoin-org/bcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeccak512.js
65 lines (50 loc) · 1.08 KB
/
keccak512.js
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
/*!
* keccak512.js - Keccak-512 implementation for bcrypto
* Copyright (c) 2017-2019, Christopher Jeffrey (MIT License).
* https://github.com/bcoin-org/bcrypto
*/
'use strict';
const Keccak = require('./keccak');
/**
* Keccak512
*/
class Keccak512 extends Keccak {
constructor() {
super();
}
init() {
return super.init(512);
}
final() {
return super.final(0x01, null);
}
static hash() {
return new Keccak512();
}
static hmac() {
return super.hmac(512, 0x01, null);
}
static digest(data) {
return super.digest(data, 512, 0x01, null);
}
static root(left, right) {
return super.root(left, right, 512, 0x01, null);
}
static multi(x, y, z) {
return super.multi(x, y, z, 512, 0x01, null);
}
static mac(data, key) {
return super.mac(data, key, 512, 0x01, null);
}
}
Keccak512.native = Keccak.native;
Keccak512.id = 'KECCAK512';
Keccak512.size = 32;
Keccak512.bits = 512;
Keccak512.blockSize = 72;
Keccak512.zero = Buffer.alloc(32, 0x00);
Keccak512.ctx = new Keccak512();
/*
* Expose
*/
module.exports = Keccak512;