Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/crypt/sha512.js
2868 views
1
// Copyright 2014 The Closure Library Authors. All Rights Reserved.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS-IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
/**
16
* @fileoverview SHA-512 cryptographic hash.
17
*
18
* Usage:
19
* var sha512 = new goog.crypt.Sha512();
20
* sha512.update(bytes);
21
* var hash = sha512.digest();
22
*
23
* @author [email protected] (Frank Yellin)
24
*/
25
26
goog.provide('goog.crypt.Sha512');
27
28
goog.require('goog.crypt.Sha2_64bit');
29
30
31
32
/**
33
* Constructs a SHA-512 cryptographic hash.
34
*
35
* @constructor
36
* @extends {goog.crypt.Sha2_64bit}
37
* @final
38
* @struct
39
*/
40
goog.crypt.Sha512 = function() {
41
goog.crypt.Sha512.base(
42
this, 'constructor', 8 /* numHashBlocks */,
43
goog.crypt.Sha512.INIT_HASH_BLOCK_);
44
};
45
goog.inherits(goog.crypt.Sha512, goog.crypt.Sha2_64bit);
46
47
48
/** @private {!Array<number>} */
49
goog.crypt.Sha512.INIT_HASH_BLOCK_ = [
50
// Section 5.3.5 of
51
// csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
52
0x6a09e667, 0xf3bcc908, // H0
53
0xbb67ae85, 0x84caa73b, // H1
54
0x3c6ef372, 0xfe94f82b, // H2
55
0xa54ff53a, 0x5f1d36f1, // H3
56
0x510e527f, 0xade682d1, // H4
57
0x9b05688c, 0x2b3e6c1f, // H5
58
0x1f83d9ab, 0xfb41bd6b, // H6
59
0x5be0cd19, 0x137e2179 // H7
60
];
61
62