sha512.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 cryptographic hash.
  16. *
  17. * Usage:
  18. * var sha512 = new goog.crypt.Sha512();
  19. * sha512.update(bytes);
  20. * var hash = sha512.digest();
  21. *
  22. * @author fy@google.com (Frank Yellin)
  23. */
  24. goog.provide('goog.crypt.Sha512');
  25. goog.require('goog.crypt.Sha2_64bit');
  26. /**
  27. * Constructs a SHA-512 cryptographic hash.
  28. *
  29. * @constructor
  30. * @extends {goog.crypt.Sha2_64bit}
  31. * @final
  32. * @struct
  33. */
  34. goog.crypt.Sha512 = function() {
  35. goog.crypt.Sha512.base(
  36. this, 'constructor', 8 /* numHashBlocks */,
  37. goog.crypt.Sha512.INIT_HASH_BLOCK_);
  38. };
  39. goog.inherits(goog.crypt.Sha512, goog.crypt.Sha2_64bit);
  40. /** @private {!Array<number>} */
  41. goog.crypt.Sha512.INIT_HASH_BLOCK_ = [
  42. // Section 5.3.5 of
  43. // csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
  44. 0x6a09e667, 0xf3bcc908, // H0
  45. 0xbb67ae85, 0x84caa73b, // H1
  46. 0x3c6ef372, 0xfe94f82b, // H2
  47. 0xa54ff53a, 0x5f1d36f1, // H3
  48. 0x510e527f, 0xade682d1, // H4
  49. 0x9b05688c, 0x2b3e6c1f, // H5
  50. 0x1f83d9ab, 0xfb41bd6b, // H6
  51. 0x5be0cd19, 0x137e2179 // H7
  52. ];