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