123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- goog.provide('goog.crypt.Sha2');
- goog.require('goog.array');
- goog.require('goog.asserts');
- goog.require('goog.crypt.Hash');
- goog.crypt.Sha2 = function(numHashBlocks, initHashBlocks) {
- goog.crypt.Sha2.base(this, 'constructor');
- this.blockSize = goog.crypt.Sha2.BLOCKSIZE_;
-
- this.chunk_ = goog.global['Uint8Array'] ? new Uint8Array(this.blockSize) :
- new Array(this.blockSize);
-
- this.inChunk_ = 0;
-
- this.total_ = 0;
-
- this.hash_ = [];
-
- this.numHashBlocks_ = numHashBlocks;
-
- this.initHashBlocks_ = initHashBlocks;
-
- this.w_ = goog.global['Int32Array'] ? new Int32Array(64) : new Array(64);
- if (!goog.isDef(goog.crypt.Sha2.Kx_)) {
-
- if (goog.global['Int32Array']) {
-
- goog.crypt.Sha2.Kx_ = new Int32Array(goog.crypt.Sha2.K_);
- } else {
-
- goog.crypt.Sha2.Kx_ = goog.crypt.Sha2.K_;
- }
- }
- this.reset();
- };
- goog.inherits(goog.crypt.Sha2, goog.crypt.Hash);
- goog.crypt.Sha2.BLOCKSIZE_ = 512 / 8;
- goog.crypt.Sha2.PADDING_ = goog.array.concat(
- 128, goog.array.repeat(0, goog.crypt.Sha2.BLOCKSIZE_ - 1));
- goog.crypt.Sha2.prototype.reset = function() {
- this.inChunk_ = 0;
- this.total_ = 0;
- this.hash_ = goog.global['Int32Array'] ?
- new Int32Array(this.initHashBlocks_) :
- goog.array.clone(this.initHashBlocks_);
- };
- goog.crypt.Sha2.prototype.computeChunk_ = function() {
- var chunk = this.chunk_;
- goog.asserts.assert(chunk.length == this.blockSize);
- var rounds = 64;
-
- var w = this.w_;
- var index = 0;
- var offset = 0;
- while (offset < chunk.length) {
- w[index++] = (chunk[offset] << 24) | (chunk[offset + 1] << 16) |
- (chunk[offset + 2] << 8) | (chunk[offset + 3]);
- offset = index * 4;
- }
-
- for (var i = 16; i < rounds; i++) {
- var w_15 = w[i - 15] | 0;
- var s0 = ((w_15 >>> 7) | (w_15 << 25)) ^ ((w_15 >>> 18) | (w_15 << 14)) ^
- (w_15 >>> 3);
- var w_2 = w[i - 2] | 0;
- var s1 = ((w_2 >>> 17) | (w_2 << 15)) ^ ((w_2 >>> 19) | (w_2 << 13)) ^
- (w_2 >>> 10);
-
-
-
- var partialSum1 = ((w[i - 16] | 0) + s0) | 0;
- var partialSum2 = ((w[i - 7] | 0) + s1) | 0;
- w[i] = (partialSum1 + partialSum2) | 0;
- }
- var a = this.hash_[0] | 0;
- var b = this.hash_[1] | 0;
- var c = this.hash_[2] | 0;
- var d = this.hash_[3] | 0;
- var e = this.hash_[4] | 0;
- var f = this.hash_[5] | 0;
- var g = this.hash_[6] | 0;
- var h = this.hash_[7] | 0;
- for (var i = 0; i < rounds; i++) {
- var S0 = ((a >>> 2) | (a << 30)) ^ ((a >>> 13) | (a << 19)) ^
- ((a >>> 22) | (a << 10));
- var maj = ((a & b) ^ (a & c) ^ (b & c));
- var t2 = (S0 + maj) | 0;
- var S1 = ((e >>> 6) | (e << 26)) ^ ((e >>> 11) | (e << 21)) ^
- ((e >>> 25) | (e << 7));
- var ch = ((e & f) ^ ((~e) & g));
-
-
-
- var partialSum1 = (h + S1) | 0;
- var partialSum2 = (ch + (goog.crypt.Sha2.Kx_[i] | 0)) | 0;
- var partialSum3 = (partialSum2 + (w[i] | 0)) | 0;
- var t1 = (partialSum1 + partialSum3) | 0;
- h = g;
- g = f;
- f = e;
- e = (d + t1) | 0;
- d = c;
- c = b;
- b = a;
- a = (t1 + t2) | 0;
- }
- this.hash_[0] = (this.hash_[0] + a) | 0;
- this.hash_[1] = (this.hash_[1] + b) | 0;
- this.hash_[2] = (this.hash_[2] + c) | 0;
- this.hash_[3] = (this.hash_[3] + d) | 0;
- this.hash_[4] = (this.hash_[4] + e) | 0;
- this.hash_[5] = (this.hash_[5] + f) | 0;
- this.hash_[6] = (this.hash_[6] + g) | 0;
- this.hash_[7] = (this.hash_[7] + h) | 0;
- };
- goog.crypt.Sha2.prototype.update = function(message, opt_length) {
- if (!goog.isDef(opt_length)) {
- opt_length = message.length;
- }
-
-
-
-
-
-
- var n = 0;
- var inChunk = this.inChunk_;
-
- if (goog.isString(message)) {
- while (n < opt_length) {
- this.chunk_[inChunk++] = message.charCodeAt(n++);
- if (inChunk == this.blockSize) {
- this.computeChunk_();
- inChunk = 0;
- }
- }
- } else if (goog.isArrayLike(message)) {
- while (n < opt_length) {
- var b = message[n++];
- if (!('number' == typeof b && 0 <= b && 255 >= b && b == (b | 0))) {
- throw Error('message must be a byte array');
- }
- this.chunk_[inChunk++] = b;
- if (inChunk == this.blockSize) {
- this.computeChunk_();
- inChunk = 0;
- }
- }
- } else {
- throw Error('message must be string or array');
- }
-
- this.inChunk_ = inChunk;
-
- this.total_ += opt_length;
- };
- goog.crypt.Sha2.prototype.digest = function() {
- var digest = [];
- var totalBits = this.total_ * 8;
-
- if (this.inChunk_ < 56) {
- this.update(goog.crypt.Sha2.PADDING_, 56 - this.inChunk_);
- } else {
- this.update(
- goog.crypt.Sha2.PADDING_, this.blockSize - (this.inChunk_ - 56));
- }
-
- for (var i = 63; i >= 56; i--) {
- this.chunk_[i] = totalBits & 255;
- totalBits /= 256;
- }
- this.computeChunk_();
-
- var n = 0;
- for (var i = 0; i < this.numHashBlocks_; i++) {
- for (var j = 24; j >= 0; j -= 8) {
- digest[n++] = ((this.hash_[i] >> j) & 255);
- }
- }
- return digest;
- };
- goog.crypt.Sha2.K_ = [
- 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1,
- 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
- 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786,
- 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
- 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147,
- 0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
- 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b,
- 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
- 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a,
- 0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
- 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
- ];
- goog.crypt.Sha2.Kx_;
|