Path: blob/trunk/third_party/closure/goog/crypt/sha512_256.js
2868 views
// Copyright 2014 The Closure Library Authors. All Rights Reserved.1//2// Licensed under the Apache License, Version 2.0 (the "License");3// you may not use this file except in compliance with the License.4// You may obtain a copy of the License at5//6// http://www.apache.org/licenses/LICENSE-2.07//8// Unless required by applicable law or agreed to in writing, software9// distributed under the License is distributed on an "AS-IS" BASIS,10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.11// See the License for the specific language governing permissions and12// limitations under the License.1314/**15* @fileoverview SHA-512/256 cryptographic hash.16*17* WARNING: SHA-256 and SHA-512/256 are different members of the SHA-218* family of hashes. Although both give 32-byte results, the two results19* should bear no relationship to each other.20*21* Please be careful before using this hash function.22* <p>23* Usage:24* var sha512_256 = new goog.crypt.Sha512_256();25* sha512_256.update(bytes);26* var hash = sha512_256.digest();27*28* @author [email protected] (Frank Yellin)29*/3031goog.provide('goog.crypt.Sha512_256');3233goog.require('goog.crypt.Sha2_64bit');34353637/**38* Constructs a SHA-512/256 cryptographic hash.39*40* @constructor41* @extends {goog.crypt.Sha2_64bit}42* @final43* @struct44*/45goog.crypt.Sha512_256 = function() {46goog.crypt.Sha512_256.base(47this, 'constructor', 4 /* numHashBlocks */,48goog.crypt.Sha512_256.INIT_HASH_BLOCK_);49};50goog.inherits(goog.crypt.Sha512_256, goog.crypt.Sha2_64bit);515253/** @private {!Array<number>} */54goog.crypt.Sha512_256.INIT_HASH_BLOCK_ = [55// Section 5.3.6.2 of56// csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf570x22312194, 0xFC2BF72C, // H0580x9F555FA3, 0xC84C64C2, // H1590x2393B86B, 0x6F53B151, // H2600x96387719, 0x5940EABD, // H3610x96283EE2, 0xA88EFFE3, // H4620xBE5E1E25, 0x53863992, // H5630x2B0199FC, 0x2C85B8AA, // H6640x0EB72DDC, 0x81C52CA2 // H765];666768