sha512_256.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. * @fileoverview SHA-512/256 cryptographic hash.
  16. *
  17. * WARNING: SHA-256 and SHA-512/256 are different members of the SHA-2
  18. * family of hashes. Although both give 32-byte results, the two results
  19. * 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 fy@google.com (Frank Yellin)
  29. */
  30. goog.provide('goog.crypt.Sha512_256');
  31. goog.require('goog.crypt.Sha2_64bit');
  32. /**
  33. * Constructs a SHA-512/256 cryptographic hash.
  34. *
  35. * @constructor
  36. * @extends {goog.crypt.Sha2_64bit}
  37. * @final
  38. * @struct
  39. */
  40. goog.crypt.Sha512_256 = function() {
  41. goog.crypt.Sha512_256.base(
  42. this, 'constructor', 4 /* numHashBlocks */,
  43. goog.crypt.Sha512_256.INIT_HASH_BLOCK_);
  44. };
  45. goog.inherits(goog.crypt.Sha512_256, goog.crypt.Sha2_64bit);
  46. /** @private {!Array<number>} */
  47. goog.crypt.Sha512_256.INIT_HASH_BLOCK_ = [
  48. // Section 5.3.6.2 of
  49. // csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
  50. 0x22312194, 0xFC2BF72C, // H0
  51. 0x9F555FA3, 0xC84C64C2, // H1
  52. 0x2393B86B, 0x6F53B151, // H2
  53. 0x96387719, 0x5940EABD, // H3
  54. 0x96283EE2, 0xA88EFFE3, // H4
  55. 0xBE5E1E25, 0x53863992, // H5
  56. 0x2B0199FC, 0x2C85B8AA, // H6
  57. 0x0EB72DDC, 0x81C52CA2 // H7
  58. ];