Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/crypt/sha512_256.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/256 cryptographic hash.
17
*
18
* WARNING: SHA-256 and SHA-512/256 are different members of the SHA-2
19
* family of hashes. Although both give 32-byte results, the two results
20
* should bear no relationship to each other.
21
*
22
* Please be careful before using this hash function.
23
* <p>
24
* Usage:
25
* var sha512_256 = new goog.crypt.Sha512_256();
26
* sha512_256.update(bytes);
27
* var hash = sha512_256.digest();
28
*
29
* @author [email protected] (Frank Yellin)
30
*/
31
32
goog.provide('goog.crypt.Sha512_256');
33
34
goog.require('goog.crypt.Sha2_64bit');
35
36
37
38
/**
39
* Constructs a SHA-512/256 cryptographic hash.
40
*
41
* @constructor
42
* @extends {goog.crypt.Sha2_64bit}
43
* @final
44
* @struct
45
*/
46
goog.crypt.Sha512_256 = function() {
47
goog.crypt.Sha512_256.base(
48
this, 'constructor', 4 /* numHashBlocks */,
49
goog.crypt.Sha512_256.INIT_HASH_BLOCK_);
50
};
51
goog.inherits(goog.crypt.Sha512_256, goog.crypt.Sha2_64bit);
52
53
54
/** @private {!Array<number>} */
55
goog.crypt.Sha512_256.INIT_HASH_BLOCK_ = [
56
// Section 5.3.6.2 of
57
// csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
58
0x22312194, 0xFC2BF72C, // H0
59
0x9F555FA3, 0xC84C64C2, // H1
60
0x2393B86B, 0x6F53B151, // H2
61
0x96387719, 0x5940EABD, // H3
62
0x96283EE2, 0xA88EFFE3, // H4
63
0xBE5E1E25, 0x53863992, // H5
64
0x2B0199FC, 0x2C85B8AA, // H6
65
0x0EB72DDC, 0x81C52CA2 // H7
66
];
67
68