aes.js 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044
  1. // Copyright 2012 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 Implementation of AES in JavaScript.
  16. * @see http://en.wikipedia.org/wiki/Advanced_Encryption_Standard
  17. *
  18. * @author nnaze@google.com (Nathan Naze) - port to Closure
  19. */
  20. goog.provide('goog.crypt.Aes');
  21. goog.require('goog.asserts');
  22. goog.require('goog.crypt.BlockCipher');
  23. /**
  24. * Implementation of AES in JavaScript.
  25. * See http://en.wikipedia.org/wiki/Advanced_Encryption_Standard
  26. *
  27. * WARNING: This is ECB mode only. If you are encrypting something
  28. * longer than 16 bytes, or encrypting more than one value with the same key
  29. * (so basically, always) you need to use this with a block cipher mode of
  30. * operation. See goog.crypt.Cbc.
  31. *
  32. * See http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation for more
  33. * information.
  34. *
  35. * @constructor
  36. * @implements {goog.crypt.BlockCipher}
  37. * @param {!Array<number>} key The key as an array of integers in {0, 255}.
  38. * The key must have lengths of 16, 24, or 32 integers for 128-,
  39. * 192-, or 256-bit encryption, respectively.
  40. * @final
  41. * @struct
  42. */
  43. goog.crypt.Aes = function(key) {
  44. goog.crypt.Aes.assertKeyArray_(key);
  45. /**
  46. * The AES key.
  47. * @type {!Array<number>}
  48. * @private
  49. */
  50. this.key_ = key;
  51. /**
  52. * Key length, in words.
  53. * @type {number}
  54. * @private
  55. */
  56. this.keyLengthInWords_ = this.key_.length / 4;
  57. /**
  58. * Number of rounds. Based on key length per AES spec.
  59. * @type {number}
  60. * @private
  61. */
  62. this.numberOfRounds_ = this.keyLengthInWords_ + 6;
  63. /**
  64. * 4x4 byte array containing the current state.
  65. * @type {!Array<!Array<number>>}
  66. * @private
  67. */
  68. this.state_ = [[], [], [], []];
  69. /**
  70. * Scratch temporary array for calculation.
  71. * @type {!Array<!Array<number>>}
  72. * @private
  73. */
  74. this.temp_ = [[], [], [], []];
  75. /**
  76. * The key schedule.
  77. * @type {!Array<!Array<number>>}
  78. * @private
  79. */
  80. this.keySchedule_;
  81. this.keyExpansion_();
  82. };
  83. /**
  84. * Block size, in bytes. Fixed at 16 per AES spec.
  85. * @override
  86. * @type {number}
  87. * @const
  88. * @public
  89. */
  90. goog.crypt.Aes.prototype.BLOCK_SIZE = 16;
  91. /**
  92. * Number of words in a block.
  93. * @type {number}
  94. * @const
  95. * @private
  96. */
  97. goog.crypt.Aes.BLOCK_SIZE_IN_WORDS_ = goog.crypt.Aes.prototype.BLOCK_SIZE / 4;
  98. /**
  99. * @define {boolean} Whether to call test method stubs. This can be enabled
  100. * for unit testing.
  101. */
  102. goog.define('goog.crypt.Aes.ENABLE_TEST_MODE', false);
  103. /**
  104. * @override
  105. */
  106. goog.crypt.Aes.prototype.encrypt = function(input) {
  107. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  108. this.testKeySchedule_(0, this.keySchedule_, 0);
  109. }
  110. this.copyInput_(input);
  111. this.addRoundKey_(0);
  112. for (var round = 1; round < this.numberOfRounds_; ++round) {
  113. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  114. this.testKeySchedule_(round, this.keySchedule_, round);
  115. this.testStartRound_(round, this.state_);
  116. }
  117. this.subBytes_(goog.crypt.Aes.SBOX_);
  118. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  119. this.testAfterSubBytes_(round, this.state_);
  120. }
  121. this.shiftRows_();
  122. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  123. this.testAfterShiftRows_(round, this.state_);
  124. }
  125. this.mixColumns_();
  126. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  127. this.testAfterMixColumns_(round, this.state_);
  128. }
  129. this.addRoundKey_(round);
  130. }
  131. this.subBytes_(goog.crypt.Aes.SBOX_);
  132. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  133. this.testAfterSubBytes_(round, this.state_);
  134. }
  135. this.shiftRows_();
  136. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  137. this.testAfterShiftRows_(round, this.state_);
  138. }
  139. this.addRoundKey_(this.numberOfRounds_);
  140. return this.generateOutput_();
  141. };
  142. /**
  143. * @override
  144. */
  145. goog.crypt.Aes.prototype.decrypt = function(input) {
  146. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  147. this.testKeySchedule_(0, this.keySchedule_, this.numberOfRounds_);
  148. }
  149. this.copyInput_(input);
  150. this.addRoundKey_(this.numberOfRounds_);
  151. for (var round = 1; round < this.numberOfRounds_; ++round) {
  152. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  153. this.testKeySchedule_(
  154. round, this.keySchedule_, this.numberOfRounds_ - round);
  155. this.testStartRound_(round, this.state_);
  156. }
  157. this.invShiftRows_();
  158. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  159. this.testAfterShiftRows_(round, this.state_);
  160. }
  161. this.subBytes_(goog.crypt.Aes.INV_SBOX_);
  162. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  163. this.testAfterSubBytes_(round, this.state_);
  164. }
  165. this.addRoundKey_(this.numberOfRounds_ - round);
  166. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  167. this.testAfterAddRoundKey_(round, this.state_);
  168. }
  169. this.invMixColumns_();
  170. }
  171. this.invShiftRows_();
  172. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  173. this.testAfterShiftRows_(round, this.state_);
  174. }
  175. this.subBytes_(goog.crypt.Aes.INV_SBOX_);
  176. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  177. this.testAfterSubBytes_(this.numberOfRounds_, this.state_);
  178. }
  179. if (goog.crypt.Aes.ENABLE_TEST_MODE) {
  180. this.testKeySchedule_(this.numberOfRounds_, this.keySchedule_, 0);
  181. }
  182. this.addRoundKey_(0);
  183. return this.generateOutput_();
  184. };
  185. /**
  186. * Asserts that the key's array of integers is in the correct format.
  187. * @param {!Array<number>} arr AES key as array of integers.
  188. * @private
  189. */
  190. goog.crypt.Aes.assertKeyArray_ = function(arr) {
  191. if (goog.asserts.ENABLE_ASSERTS) {
  192. goog.asserts.assert(
  193. arr.length == 16 || arr.length == 24 || arr.length == 32,
  194. 'Key must have length 16, 24, or 32.');
  195. for (var i = 0; i < arr.length; i++) {
  196. goog.asserts.assertNumber(arr[i]);
  197. goog.asserts.assert(arr[i] >= 0 && arr[i] <= 255);
  198. }
  199. }
  200. };
  201. /**
  202. * Tests can populate this with a callback, and that callback will get called
  203. * at the start of each round *in both functions encrypt() and decrypt()*.
  204. * @param {number} roundNum Round number.
  205. * @param {!Array<Array<number>>} Current state.
  206. * @private
  207. */
  208. goog.crypt.Aes.prototype.testStartRound_ = goog.nullFunction;
  209. /**
  210. * Tests can populate this with a callback, and that callback will get called
  211. * each round right after the SubBytes step gets executed *in both functions
  212. * encrypt() and decrypt()*.
  213. * @param {number} roundNum Round number.
  214. * @param {!Array<Array<number>>} Current state.
  215. * @private
  216. */
  217. goog.crypt.Aes.prototype.testAfterSubBytes_ = goog.nullFunction;
  218. /**
  219. * Tests can populate this with a callback, and that callback will get called
  220. * each round right after the ShiftRows step gets executed *in both functions
  221. * encrypt() and decrypt()*.
  222. * @param {number} roundNum Round number.
  223. * @param {!Array<Array<number>>} Current state.
  224. * @private
  225. */
  226. goog.crypt.Aes.prototype.testAfterShiftRows_ = goog.nullFunction;
  227. /**
  228. * Tests can populate this with a callback, and that callback will get called
  229. * each round right after the MixColumns step gets executed *but only in the
  230. * decrypt() function*.
  231. * @param {number} roundNum Round number.
  232. * @param {!Array<Array<number>>} Current state.
  233. * @private
  234. */
  235. goog.crypt.Aes.prototype.testAfterMixColumns_ = goog.nullFunction;
  236. /**
  237. * Tests can populate this with a callback, and that callback will get called
  238. * each round right after the AddRoundKey step gets executed encrypt().
  239. * @param {number} roundNum Round number.
  240. * @param {!Array<Array<number>>} Current state.
  241. * @private
  242. */
  243. goog.crypt.Aes.prototype.testAfterAddRoundKey_ = goog.nullFunction;
  244. /**
  245. * Tests can populate this with a callback, and that callback will get called
  246. * before each round on the round key. *Gets called in both the encrypt() and
  247. * decrypt() functions.*
  248. * @param {number} roundNum Round number.
  249. * @param {Array<!Array<number>>} Computed key schedule.
  250. * @param {number} index The index into the key schedule to test. This is not
  251. * necessarily roundNum because the key schedule is used in reverse
  252. * in the case of decryption.
  253. * @private
  254. */
  255. goog.crypt.Aes.prototype.testKeySchedule_ = goog.nullFunction;
  256. /**
  257. * Helper to copy input into the AES state matrix.
  258. * @param {!Array<number>|!Uint8Array} input Byte array to copy into the state
  259. * matrix.
  260. * @private
  261. */
  262. goog.crypt.Aes.prototype.copyInput_ = function(input) {
  263. var v, p;
  264. goog.asserts.assert(
  265. input.length == this.BLOCK_SIZE, 'Expecting input of block size.');
  266. for (var r = 0; r < goog.crypt.Aes.BLOCK_SIZE_IN_WORDS_; r++) {
  267. for (var c = 0; c < 4; c++) {
  268. p = c * 4 + r;
  269. v = input[p];
  270. goog.asserts.assert(
  271. v <= 255 && v >= 0,
  272. 'Invalid input. Value %s at position %s is not a byte.', v, p);
  273. this.state_[r][c] = v;
  274. }
  275. }
  276. };
  277. /**
  278. * Helper to copy the state matrix into an output array.
  279. * @return {!Array<number>} Output byte array.
  280. * @private
  281. */
  282. goog.crypt.Aes.prototype.generateOutput_ = function() {
  283. var output = [];
  284. for (var r = 0; r < goog.crypt.Aes.BLOCK_SIZE_IN_WORDS_; r++) {
  285. for (var c = 0; c < 4; c++) {
  286. output[c * 4 + r] = this.state_[r][c];
  287. }
  288. }
  289. return output;
  290. };
  291. /**
  292. * AES's AddRoundKey procedure. Add the current round key to the state.
  293. * @param {number} round The current round.
  294. * @private
  295. */
  296. goog.crypt.Aes.prototype.addRoundKey_ = function(round) {
  297. for (var r = 0; r < 4; r++) {
  298. for (var c = 0; c < 4; c++) {
  299. this.state_[r][c] ^= this.keySchedule_[round * 4 + c][r];
  300. }
  301. }
  302. };
  303. /**
  304. * AES's SubBytes procedure. Substitute bytes from the precomputed SBox lookup
  305. * into the state.
  306. * @param {!Array<number>} box The SBox or invSBox.
  307. * @private
  308. */
  309. goog.crypt.Aes.prototype.subBytes_ = function(box) {
  310. for (var r = 0; r < 4; r++) {
  311. for (var c = 0; c < 4; c++) {
  312. this.state_[r][c] = box[this.state_[r][c]];
  313. }
  314. }
  315. };
  316. /**
  317. * AES's ShiftRows procedure. Shift the values in each row to the right. Each
  318. * row is shifted one more slot than the one above it.
  319. * @private
  320. */
  321. goog.crypt.Aes.prototype.shiftRows_ = function() {
  322. for (var r = 1; r < 4; r++) {
  323. for (var c = 0; c < 4; c++) {
  324. this.temp_[r][c] = this.state_[r][c];
  325. }
  326. }
  327. for (var r = 1; r < 4; r++) {
  328. for (var c = 0; c < 4; c++) {
  329. this.state_[r][c] =
  330. this.temp_[r][(c + r) % goog.crypt.Aes.BLOCK_SIZE_IN_WORDS_];
  331. }
  332. }
  333. };
  334. /**
  335. * AES's InvShiftRows procedure. Shift the values in each row to the right.
  336. * @private
  337. */
  338. goog.crypt.Aes.prototype.invShiftRows_ = function() {
  339. for (var r = 1; r < 4; r++) {
  340. for (var c = 0; c < 4; c++) {
  341. this.temp_[r][(c + r) % goog.crypt.Aes.BLOCK_SIZE_IN_WORDS_] =
  342. this.state_[r][c];
  343. }
  344. }
  345. for (var r = 1; r < 4; r++) {
  346. for (var c = 0; c < 4; c++) {
  347. this.state_[r][c] = this.temp_[r][c];
  348. }
  349. }
  350. };
  351. /**
  352. * AES's MixColumns procedure. Mix the columns of the state using magic.
  353. * @private
  354. */
  355. goog.crypt.Aes.prototype.mixColumns_ = function() {
  356. var s = this.state_;
  357. var t = this.temp_[0];
  358. for (var c = 0; c < 4; c++) {
  359. t[0] = s[0][c];
  360. t[1] = s[1][c];
  361. t[2] = s[2][c];
  362. t[3] = s[3][c];
  363. s[0][c] =
  364. (goog.crypt.Aes.MULT_2_[t[0]] ^ goog.crypt.Aes.MULT_3_[t[1]] ^ t[2] ^
  365. t[3]);
  366. s[1][c] =
  367. (t[0] ^ goog.crypt.Aes.MULT_2_[t[1]] ^ goog.crypt.Aes.MULT_3_[t[2]] ^
  368. t[3]);
  369. s[2][c] =
  370. (t[0] ^ t[1] ^ goog.crypt.Aes.MULT_2_[t[2]] ^
  371. goog.crypt.Aes.MULT_3_[t[3]]);
  372. s[3][c] =
  373. (goog.crypt.Aes.MULT_3_[t[0]] ^ t[1] ^ t[2] ^
  374. goog.crypt.Aes.MULT_2_[t[3]]);
  375. }
  376. };
  377. /**
  378. * AES's InvMixColumns procedure.
  379. * @private
  380. */
  381. goog.crypt.Aes.prototype.invMixColumns_ = function() {
  382. var s = this.state_;
  383. var t = this.temp_[0];
  384. for (var c = 0; c < 4; c++) {
  385. t[0] = s[0][c];
  386. t[1] = s[1][c];
  387. t[2] = s[2][c];
  388. t[3] = s[3][c];
  389. s[0][c] =
  390. (goog.crypt.Aes.MULT_E_[t[0]] ^ goog.crypt.Aes.MULT_B_[t[1]] ^
  391. goog.crypt.Aes.MULT_D_[t[2]] ^ goog.crypt.Aes.MULT_9_[t[3]]);
  392. s[1][c] =
  393. (goog.crypt.Aes.MULT_9_[t[0]] ^ goog.crypt.Aes.MULT_E_[t[1]] ^
  394. goog.crypt.Aes.MULT_B_[t[2]] ^ goog.crypt.Aes.MULT_D_[t[3]]);
  395. s[2][c] =
  396. (goog.crypt.Aes.MULT_D_[t[0]] ^ goog.crypt.Aes.MULT_9_[t[1]] ^
  397. goog.crypt.Aes.MULT_E_[t[2]] ^ goog.crypt.Aes.MULT_B_[t[3]]);
  398. s[3][c] =
  399. (goog.crypt.Aes.MULT_B_[t[0]] ^ goog.crypt.Aes.MULT_D_[t[1]] ^
  400. goog.crypt.Aes.MULT_9_[t[2]] ^ goog.crypt.Aes.MULT_E_[t[3]]);
  401. }
  402. };
  403. /**
  404. * AES's KeyExpansion procedure. Create the key schedule from the initial key.
  405. * @private
  406. */
  407. goog.crypt.Aes.prototype.keyExpansion_ = function() {
  408. this.keySchedule_ = new Array(
  409. goog.crypt.Aes.BLOCK_SIZE_IN_WORDS_ * (this.numberOfRounds_ + 1));
  410. for (var rowNum = 0; rowNum < this.keyLengthInWords_; rowNum++) {
  411. this.keySchedule_[rowNum] = [
  412. this.key_[4 * rowNum], this.key_[4 * rowNum + 1],
  413. this.key_[4 * rowNum + 2], this.key_[4 * rowNum + 3]
  414. ];
  415. }
  416. var temp = new Array(4);
  417. for (var rowNum = this.keyLengthInWords_; rowNum <
  418. (goog.crypt.Aes.BLOCK_SIZE_IN_WORDS_ * (this.numberOfRounds_ + 1));
  419. rowNum++) {
  420. temp[0] = this.keySchedule_[rowNum - 1][0];
  421. temp[1] = this.keySchedule_[rowNum - 1][1];
  422. temp[2] = this.keySchedule_[rowNum - 1][2];
  423. temp[3] = this.keySchedule_[rowNum - 1][3];
  424. if (rowNum % this.keyLengthInWords_ == 0) {
  425. this.rotWord_(temp);
  426. this.subWord_(temp);
  427. temp[0] ^= goog.crypt.Aes.RCON_[rowNum / this.keyLengthInWords_][0];
  428. temp[1] ^= goog.crypt.Aes.RCON_[rowNum / this.keyLengthInWords_][1];
  429. temp[2] ^= goog.crypt.Aes.RCON_[rowNum / this.keyLengthInWords_][2];
  430. temp[3] ^= goog.crypt.Aes.RCON_[rowNum / this.keyLengthInWords_][3];
  431. } else if (
  432. this.keyLengthInWords_ > 6 && rowNum % this.keyLengthInWords_ == 4) {
  433. this.subWord_(temp);
  434. }
  435. this.keySchedule_[rowNum] = new Array(4);
  436. this.keySchedule_[rowNum][0] =
  437. this.keySchedule_[rowNum - this.keyLengthInWords_][0] ^ temp[0];
  438. this.keySchedule_[rowNum][1] =
  439. this.keySchedule_[rowNum - this.keyLengthInWords_][1] ^ temp[1];
  440. this.keySchedule_[rowNum][2] =
  441. this.keySchedule_[rowNum - this.keyLengthInWords_][2] ^ temp[2];
  442. this.keySchedule_[rowNum][3] =
  443. this.keySchedule_[rowNum - this.keyLengthInWords_][3] ^ temp[3];
  444. }
  445. };
  446. /**
  447. * AES's SubWord procedure.
  448. * @param {!Array<number>} w Bytes to find the SBox substitution for.
  449. * @return {!Array<number>} The substituted bytes.
  450. * @private
  451. */
  452. goog.crypt.Aes.prototype.subWord_ = function(w) {
  453. w[0] = goog.crypt.Aes.SBOX_[w[0]];
  454. w[1] = goog.crypt.Aes.SBOX_[w[1]];
  455. w[2] = goog.crypt.Aes.SBOX_[w[2]];
  456. w[3] = goog.crypt.Aes.SBOX_[w[3]];
  457. return w;
  458. };
  459. /**
  460. * AES's RotWord procedure.
  461. * @param {!Array<number>} w Array of bytes to rotate.
  462. * @return {!Array<number>} The rotated bytes.
  463. * @private
  464. */
  465. goog.crypt.Aes.prototype.rotWord_ = function(w) {
  466. var temp = w[0];
  467. w[0] = w[1];
  468. w[1] = w[2];
  469. w[2] = w[3];
  470. w[3] = temp;
  471. return w;
  472. };
  473. // clang-format off
  474. /**
  475. * Precomputed SBox lookup.
  476. * @type {!Array<number>}
  477. * @private
  478. */
  479. goog.crypt.Aes.SBOX_ = [
  480. 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe,
  481. 0xd7, 0xab, 0x76,
  482. 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0, 0xad, 0xd4, 0xa2, 0xaf, 0x9c,
  483. 0xa4, 0x72, 0xc0,
  484. 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71,
  485. 0xd8, 0x31, 0x15,
  486. 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2, 0xeb,
  487. 0x27, 0xb2, 0x75,
  488. 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, 0x52, 0x3b, 0xd6, 0xb3, 0x29,
  489. 0xe3, 0x2f, 0x84,
  490. 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a,
  491. 0x4c, 0x58, 0xcf,
  492. 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, 0x50,
  493. 0x3c, 0x9f, 0xa8,
  494. 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, 0xbc, 0xb6, 0xda, 0x21, 0x10,
  495. 0xff, 0xf3, 0xd2,
  496. 0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64,
  497. 0x5d, 0x19, 0x73,
  498. 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14, 0xde,
  499. 0x5e, 0x0b, 0xdb,
  500. 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, 0xc2, 0xd3, 0xac, 0x62, 0x91,
  501. 0x95, 0xe4, 0x79,
  502. 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65,
  503. 0x7a, 0xae, 0x08,
  504. 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, 0x4b,
  505. 0xbd, 0x8b, 0x8a,
  506. 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, 0x61, 0x35, 0x57, 0xb9, 0x86,
  507. 0xc1, 0x1d, 0x9e,
  508. 0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce,
  509. 0x55, 0x28, 0xdf,
  510. 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f, 0xb0,
  511. 0x54, 0xbb, 0x16
  512. ];
  513. /**
  514. * Precomputed InvSBox lookup.
  515. * @type {!Array<number>}
  516. * @private
  517. */
  518. goog.crypt.Aes.INV_SBOX_ = [
  519. 0x52, 0x09, 0x6a, 0xd5, 0x30, 0x36, 0xa5, 0x38, 0xbf, 0x40, 0xa3, 0x9e, 0x81,
  520. 0xf3, 0xd7, 0xfb,
  521. 0x7c, 0xe3, 0x39, 0x82, 0x9b, 0x2f, 0xff, 0x87, 0x34, 0x8e, 0x43, 0x44, 0xc4,
  522. 0xde, 0xe9, 0xcb,
  523. 0x54, 0x7b, 0x94, 0x32, 0xa6, 0xc2, 0x23, 0x3d, 0xee, 0x4c, 0x95, 0x0b, 0x42,
  524. 0xfa, 0xc3, 0x4e,
  525. 0x08, 0x2e, 0xa1, 0x66, 0x28, 0xd9, 0x24, 0xb2, 0x76, 0x5b, 0xa2, 0x49, 0x6d,
  526. 0x8b, 0xd1, 0x25,
  527. 0x72, 0xf8, 0xf6, 0x64, 0x86, 0x68, 0x98, 0x16, 0xd4, 0xa4, 0x5c, 0xcc, 0x5d,
  528. 0x65, 0xb6, 0x92,
  529. 0x6c, 0x70, 0x48, 0x50, 0xfd, 0xed, 0xb9, 0xda, 0x5e, 0x15, 0x46, 0x57, 0xa7,
  530. 0x8d, 0x9d, 0x84,
  531. 0x90, 0xd8, 0xab, 0x00, 0x8c, 0xbc, 0xd3, 0x0a, 0xf7, 0xe4, 0x58, 0x05, 0xb8,
  532. 0xb3, 0x45, 0x06,
  533. 0xd0, 0x2c, 0x1e, 0x8f, 0xca, 0x3f, 0x0f, 0x02, 0xc1, 0xaf, 0xbd, 0x03, 0x01,
  534. 0x13, 0x8a, 0x6b,
  535. 0x3a, 0x91, 0x11, 0x41, 0x4f, 0x67, 0xdc, 0xea, 0x97, 0xf2, 0xcf, 0xce, 0xf0,
  536. 0xb4, 0xe6, 0x73,
  537. 0x96, 0xac, 0x74, 0x22, 0xe7, 0xad, 0x35, 0x85, 0xe2, 0xf9, 0x37, 0xe8, 0x1c,
  538. 0x75, 0xdf, 0x6e,
  539. 0x47, 0xf1, 0x1a, 0x71, 0x1d, 0x29, 0xc5, 0x89, 0x6f, 0xb7, 0x62, 0x0e, 0xaa,
  540. 0x18, 0xbe, 0x1b,
  541. 0xfc, 0x56, 0x3e, 0x4b, 0xc6, 0xd2, 0x79, 0x20, 0x9a, 0xdb, 0xc0, 0xfe, 0x78,
  542. 0xcd, 0x5a, 0xf4,
  543. 0x1f, 0xdd, 0xa8, 0x33, 0x88, 0x07, 0xc7, 0x31, 0xb1, 0x12, 0x10, 0x59, 0x27,
  544. 0x80, 0xec, 0x5f,
  545. 0x60, 0x51, 0x7f, 0xa9, 0x19, 0xb5, 0x4a, 0x0d, 0x2d, 0xe5, 0x7a, 0x9f, 0x93,
  546. 0xc9, 0x9c, 0xef,
  547. 0xa0, 0xe0, 0x3b, 0x4d, 0xae, 0x2a, 0xf5, 0xb0, 0xc8, 0xeb, 0xbb, 0x3c, 0x83,
  548. 0x53, 0x99, 0x61,
  549. 0x17, 0x2b, 0x04, 0x7e, 0xba, 0x77, 0xd6, 0x26, 0xe1, 0x69, 0x14, 0x63, 0x55,
  550. 0x21, 0x0c, 0x7d
  551. ];
  552. /**
  553. * Precomputed RCon lookup.
  554. * @type {!Array<!Array<number>>}
  555. * @private
  556. */
  557. goog.crypt.Aes.RCON_ = [
  558. [0x00, 0x00, 0x00, 0x00],
  559. [0x01, 0x00, 0x00, 0x00],
  560. [0x02, 0x00, 0x00, 0x00],
  561. [0x04, 0x00, 0x00, 0x00],
  562. [0x08, 0x00, 0x00, 0x00],
  563. [0x10, 0x00, 0x00, 0x00],
  564. [0x20, 0x00, 0x00, 0x00],
  565. [0x40, 0x00, 0x00, 0x00],
  566. [0x80, 0x00, 0x00, 0x00],
  567. [0x1b, 0x00, 0x00, 0x00],
  568. [0x36, 0x00, 0x00, 0x00]
  569. ];
  570. /**
  571. * Precomputed lookup of multiplication by 2 in GF(2^8)
  572. * @type {!Array<number>}
  573. * @private
  574. */
  575. goog.crypt.Aes.MULT_2_ = [
  576. 0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, 0x10, 0x12, 0x14, 0x16,
  577. 0x18, 0x1A, 0x1C, 0x1E,
  578. 0x20, 0x22, 0x24, 0x26, 0x28, 0x2A, 0x2C, 0x2E, 0x30, 0x32, 0x34, 0x36,
  579. 0x38, 0x3A, 0x3C, 0x3E,
  580. 0x40, 0x42, 0x44, 0x46, 0x48, 0x4A, 0x4C, 0x4E, 0x50, 0x52, 0x54, 0x56,
  581. 0x58, 0x5A, 0x5C, 0x5E,
  582. 0x60, 0x62, 0x64, 0x66, 0x68, 0x6A, 0x6C, 0x6E, 0x70, 0x72, 0x74, 0x76,
  583. 0x78, 0x7A, 0x7C, 0x7E,
  584. 0x80, 0x82, 0x84, 0x86, 0x88, 0x8A, 0x8C, 0x8E, 0x90, 0x92, 0x94, 0x96,
  585. 0x98, 0x9A, 0x9C, 0x9E,
  586. 0xA0, 0xA2, 0xA4, 0xA6, 0xA8, 0xAA, 0xAC, 0xAE, 0xB0, 0xB2, 0xB4, 0xB6,
  587. 0xB8, 0xBA, 0xBC, 0xBE,
  588. 0xC0, 0xC2, 0xC4, 0xC6, 0xC8, 0xCA, 0xCC, 0xCE, 0xD0, 0xD2, 0xD4, 0xD6,
  589. 0xD8, 0xDA, 0xDC, 0xDE,
  590. 0xE0, 0xE2, 0xE4, 0xE6, 0xE8, 0xEA, 0xEC, 0xEE, 0xF0, 0xF2, 0xF4, 0xF6,
  591. 0xF8, 0xFA, 0xFC, 0xFE,
  592. 0x1B, 0x19, 0x1F, 0x1D, 0x13, 0x11, 0x17, 0x15, 0x0B, 0x09, 0x0F, 0x0D,
  593. 0x03, 0x01, 0x07, 0x05,
  594. 0x3B, 0x39, 0x3F, 0x3D, 0x33, 0x31, 0x37, 0x35, 0x2B, 0x29, 0x2F, 0x2D,
  595. 0x23, 0x21, 0x27, 0x25,
  596. 0x5B, 0x59, 0x5F, 0x5D, 0x53, 0x51, 0x57, 0x55, 0x4B, 0x49, 0x4F, 0x4D,
  597. 0x43, 0x41, 0x47, 0x45,
  598. 0x7B, 0x79, 0x7F, 0x7D, 0x73, 0x71, 0x77, 0x75, 0x6B, 0x69, 0x6F, 0x6D,
  599. 0x63, 0x61, 0x67, 0x65,
  600. 0x9B, 0x99, 0x9F, 0x9D, 0x93, 0x91, 0x97, 0x95, 0x8B, 0x89, 0x8F, 0x8D,
  601. 0x83, 0x81, 0x87, 0x85,
  602. 0xBB, 0xB9, 0xBF, 0xBD, 0xB3, 0xB1, 0xB7, 0xB5, 0xAB, 0xA9, 0xAF, 0xAD,
  603. 0xA3, 0xA1, 0xA7, 0xA5,
  604. 0xDB, 0xD9, 0xDF, 0xDD, 0xD3, 0xD1, 0xD7, 0xD5, 0xCB, 0xC9, 0xCF, 0xCD,
  605. 0xC3, 0xC1, 0xC7, 0xC5,
  606. 0xFB, 0xF9, 0xFF, 0xFD, 0xF3, 0xF1, 0xF7, 0xF5, 0xEB, 0xE9, 0xEF, 0xED,
  607. 0xE3, 0xE1, 0xE7, 0xE5
  608. ];
  609. /**
  610. * Precomputed lookup of multiplication by 3 in GF(2^8)
  611. * @type {!Array<number>}
  612. * @private
  613. */
  614. goog.crypt.Aes.MULT_3_ = [
  615. 0x00, 0x03, 0x06, 0x05, 0x0C, 0x0F, 0x0A, 0x09, 0x18, 0x1B, 0x1E, 0x1D,
  616. 0x14, 0x17, 0x12, 0x11,
  617. 0x30, 0x33, 0x36, 0x35, 0x3C, 0x3F, 0x3A, 0x39, 0x28, 0x2B, 0x2E, 0x2D,
  618. 0x24, 0x27, 0x22, 0x21,
  619. 0x60, 0x63, 0x66, 0x65, 0x6C, 0x6F, 0x6A, 0x69, 0x78, 0x7B, 0x7E, 0x7D,
  620. 0x74, 0x77, 0x72, 0x71,
  621. 0x50, 0x53, 0x56, 0x55, 0x5C, 0x5F, 0x5A, 0x59, 0x48, 0x4B, 0x4E, 0x4D,
  622. 0x44, 0x47, 0x42, 0x41,
  623. 0xC0, 0xC3, 0xC6, 0xC5, 0xCC, 0xCF, 0xCA, 0xC9, 0xD8, 0xDB, 0xDE, 0xDD,
  624. 0xD4, 0xD7, 0xD2, 0xD1,
  625. 0xF0, 0xF3, 0xF6, 0xF5, 0xFC, 0xFF, 0xFA, 0xF9, 0xE8, 0xEB, 0xEE, 0xED,
  626. 0xE4, 0xE7, 0xE2, 0xE1,
  627. 0xA0, 0xA3, 0xA6, 0xA5, 0xAC, 0xAF, 0xAA, 0xA9, 0xB8, 0xBB, 0xBE, 0xBD,
  628. 0xB4, 0xB7, 0xB2, 0xB1,
  629. 0x90, 0x93, 0x96, 0x95, 0x9C, 0x9F, 0x9A, 0x99, 0x88, 0x8B, 0x8E, 0x8D,
  630. 0x84, 0x87, 0x82, 0x81,
  631. 0x9B, 0x98, 0x9D, 0x9E, 0x97, 0x94, 0x91, 0x92, 0x83, 0x80, 0x85, 0x86,
  632. 0x8F, 0x8C, 0x89, 0x8A,
  633. 0xAB, 0xA8, 0xAD, 0xAE, 0xA7, 0xA4, 0xA1, 0xA2, 0xB3, 0xB0, 0xB5, 0xB6,
  634. 0xBF, 0xBC, 0xB9, 0xBA,
  635. 0xFB, 0xF8, 0xFD, 0xFE, 0xF7, 0xF4, 0xF1, 0xF2, 0xE3, 0xE0, 0xE5, 0xE6,
  636. 0xEF, 0xEC, 0xE9, 0xEA,
  637. 0xCB, 0xC8, 0xCD, 0xCE, 0xC7, 0xC4, 0xC1, 0xC2, 0xD3, 0xD0, 0xD5, 0xD6,
  638. 0xDF, 0xDC, 0xD9, 0xDA,
  639. 0x5B, 0x58, 0x5D, 0x5E, 0x57, 0x54, 0x51, 0x52, 0x43, 0x40, 0x45, 0x46,
  640. 0x4F, 0x4C, 0x49, 0x4A,
  641. 0x6B, 0x68, 0x6D, 0x6E, 0x67, 0x64, 0x61, 0x62, 0x73, 0x70, 0x75, 0x76,
  642. 0x7F, 0x7C, 0x79, 0x7A,
  643. 0x3B, 0x38, 0x3D, 0x3E, 0x37, 0x34, 0x31, 0x32, 0x23, 0x20, 0x25, 0x26,
  644. 0x2F, 0x2C, 0x29, 0x2A,
  645. 0x0B, 0x08, 0x0D, 0x0E, 0x07, 0x04, 0x01, 0x02, 0x13, 0x10, 0x15, 0x16,
  646. 0x1F, 0x1C, 0x19, 0x1A
  647. ];
  648. /**
  649. * Precomputed lookup of multiplication by 9 in GF(2^8)
  650. * @type {!Array<number>}
  651. * @private
  652. */
  653. goog.crypt.Aes.MULT_9_ = [
  654. 0x00, 0x09, 0x12, 0x1B, 0x24, 0x2D, 0x36, 0x3F, 0x48, 0x41, 0x5A, 0x53,
  655. 0x6C, 0x65, 0x7E, 0x77,
  656. 0x90, 0x99, 0x82, 0x8B, 0xB4, 0xBD, 0xA6, 0xAF, 0xD8, 0xD1, 0xCA, 0xC3,
  657. 0xFC, 0xF5, 0xEE, 0xE7,
  658. 0x3B, 0x32, 0x29, 0x20, 0x1F, 0x16, 0x0D, 0x04, 0x73, 0x7A, 0x61, 0x68,
  659. 0x57, 0x5E, 0x45, 0x4C,
  660. 0xAB, 0xA2, 0xB9, 0xB0, 0x8F, 0x86, 0x9D, 0x94, 0xE3, 0xEA, 0xF1, 0xF8,
  661. 0xC7, 0xCE, 0xD5, 0xDC,
  662. 0x76, 0x7F, 0x64, 0x6D, 0x52, 0x5B, 0x40, 0x49, 0x3E, 0x37, 0x2C, 0x25,
  663. 0x1A, 0x13, 0x08, 0x01,
  664. 0xE6, 0xEF, 0xF4, 0xFD, 0xC2, 0xCB, 0xD0, 0xD9, 0xAE, 0xA7, 0xBC, 0xB5,
  665. 0x8A, 0x83, 0x98, 0x91,
  666. 0x4D, 0x44, 0x5F, 0x56, 0x69, 0x60, 0x7B, 0x72, 0x05, 0x0C, 0x17, 0x1E,
  667. 0x21, 0x28, 0x33, 0x3A,
  668. 0xDD, 0xD4, 0xCF, 0xC6, 0xF9, 0xF0, 0xEB, 0xE2, 0x95, 0x9C, 0x87, 0x8E,
  669. 0xB1, 0xB8, 0xA3, 0xAA,
  670. 0xEC, 0xE5, 0xFE, 0xF7, 0xC8, 0xC1, 0xDA, 0xD3, 0xA4, 0xAD, 0xB6, 0xBF,
  671. 0x80, 0x89, 0x92, 0x9B,
  672. 0x7C, 0x75, 0x6E, 0x67, 0x58, 0x51, 0x4A, 0x43, 0x34, 0x3D, 0x26, 0x2F,
  673. 0x10, 0x19, 0x02, 0x0B,
  674. 0xD7, 0xDE, 0xC5, 0xCC, 0xF3, 0xFA, 0xE1, 0xE8, 0x9F, 0x96, 0x8D, 0x84,
  675. 0xBB, 0xB2, 0xA9, 0xA0,
  676. 0x47, 0x4E, 0x55, 0x5C, 0x63, 0x6A, 0x71, 0x78, 0x0F, 0x06, 0x1D, 0x14,
  677. 0x2B, 0x22, 0x39, 0x30,
  678. 0x9A, 0x93, 0x88, 0x81, 0xBE, 0xB7, 0xAC, 0xA5, 0xD2, 0xDB, 0xC0, 0xC9,
  679. 0xF6, 0xFF, 0xE4, 0xED,
  680. 0x0A, 0x03, 0x18, 0x11, 0x2E, 0x27, 0x3C, 0x35, 0x42, 0x4B, 0x50, 0x59,
  681. 0x66, 0x6F, 0x74, 0x7D,
  682. 0xA1, 0xA8, 0xB3, 0xBA, 0x85, 0x8C, 0x97, 0x9E, 0xE9, 0xE0, 0xFB, 0xF2,
  683. 0xCD, 0xC4, 0xDF, 0xD6,
  684. 0x31, 0x38, 0x23, 0x2A, 0x15, 0x1C, 0x07, 0x0E, 0x79, 0x70, 0x6B, 0x62,
  685. 0x5D, 0x54, 0x4F, 0x46
  686. ];
  687. /**
  688. * Precomputed lookup of multiplication by 11 in GF(2^8)
  689. * @type {!Array<number>}
  690. * @private
  691. */
  692. goog.crypt.Aes.MULT_B_ = [
  693. 0x00, 0x0B, 0x16, 0x1D, 0x2C, 0x27, 0x3A, 0x31, 0x58, 0x53, 0x4E, 0x45,
  694. 0x74, 0x7F, 0x62, 0x69,
  695. 0xB0, 0xBB, 0xA6, 0xAD, 0x9C, 0x97, 0x8A, 0x81, 0xE8, 0xE3, 0xFE, 0xF5,
  696. 0xC4, 0xCF, 0xD2, 0xD9,
  697. 0x7B, 0x70, 0x6D, 0x66, 0x57, 0x5C, 0x41, 0x4A, 0x23, 0x28, 0x35, 0x3E,
  698. 0x0F, 0x04, 0x19, 0x12,
  699. 0xCB, 0xC0, 0xDD, 0xD6, 0xE7, 0xEC, 0xF1, 0xFA, 0x93, 0x98, 0x85, 0x8E,
  700. 0xBF, 0xB4, 0xA9, 0xA2,
  701. 0xF6, 0xFD, 0xE0, 0xEB, 0xDA, 0xD1, 0xCC, 0xC7, 0xAE, 0xA5, 0xB8, 0xB3,
  702. 0x82, 0x89, 0x94, 0x9F,
  703. 0x46, 0x4D, 0x50, 0x5B, 0x6A, 0x61, 0x7C, 0x77, 0x1E, 0x15, 0x08, 0x03,
  704. 0x32, 0x39, 0x24, 0x2F,
  705. 0x8D, 0x86, 0x9B, 0x90, 0xA1, 0xAA, 0xB7, 0xBC, 0xD5, 0xDE, 0xC3, 0xC8,
  706. 0xF9, 0xF2, 0xEF, 0xE4,
  707. 0x3D, 0x36, 0x2B, 0x20, 0x11, 0x1A, 0x07, 0x0C, 0x65, 0x6E, 0x73, 0x78,
  708. 0x49, 0x42, 0x5F, 0x54,
  709. 0xF7, 0xFC, 0xE1, 0xEA, 0xDB, 0xD0, 0xCD, 0xC6, 0xAF, 0xA4, 0xB9, 0xB2,
  710. 0x83, 0x88, 0x95, 0x9E,
  711. 0x47, 0x4C, 0x51, 0x5A, 0x6B, 0x60, 0x7D, 0x76, 0x1F, 0x14, 0x09, 0x02,
  712. 0x33, 0x38, 0x25, 0x2E,
  713. 0x8C, 0x87, 0x9A, 0x91, 0xA0, 0xAB, 0xB6, 0xBD, 0xD4, 0xDF, 0xC2, 0xC9,
  714. 0xF8, 0xF3, 0xEE, 0xE5,
  715. 0x3C, 0x37, 0x2A, 0x21, 0x10, 0x1B, 0x06, 0x0D, 0x64, 0x6F, 0x72, 0x79,
  716. 0x48, 0x43, 0x5E, 0x55,
  717. 0x01, 0x0A, 0x17, 0x1C, 0x2D, 0x26, 0x3B, 0x30, 0x59, 0x52, 0x4F, 0x44,
  718. 0x75, 0x7E, 0x63, 0x68,
  719. 0xB1, 0xBA, 0xA7, 0xAC, 0x9D, 0x96, 0x8B, 0x80, 0xE9, 0xE2, 0xFF, 0xF4,
  720. 0xC5, 0xCE, 0xD3, 0xD8,
  721. 0x7A, 0x71, 0x6C, 0x67, 0x56, 0x5D, 0x40, 0x4B, 0x22, 0x29, 0x34, 0x3F,
  722. 0x0E, 0x05, 0x18, 0x13,
  723. 0xCA, 0xC1, 0xDC, 0xD7, 0xE6, 0xED, 0xF0, 0xFB, 0x92, 0x99, 0x84, 0x8F,
  724. 0xBE, 0xB5, 0xA8, 0xA3
  725. ];
  726. /**
  727. * Precomputed lookup of multiplication by 13 in GF(2^8)
  728. * @type {!Array<number>}
  729. * @private
  730. */
  731. goog.crypt.Aes.MULT_D_ = [
  732. 0x00, 0x0D, 0x1A, 0x17, 0x34, 0x39, 0x2E, 0x23, 0x68, 0x65, 0x72, 0x7F,
  733. 0x5C, 0x51, 0x46, 0x4B,
  734. 0xD0, 0xDD, 0xCA, 0xC7, 0xE4, 0xE9, 0xFE, 0xF3, 0xB8, 0xB5, 0xA2, 0xAF,
  735. 0x8C, 0x81, 0x96, 0x9B,
  736. 0xBB, 0xB6, 0xA1, 0xAC, 0x8F, 0x82, 0x95, 0x98, 0xD3, 0xDE, 0xC9, 0xC4,
  737. 0xE7, 0xEA, 0xFD, 0xF0,
  738. 0x6B, 0x66, 0x71, 0x7C, 0x5F, 0x52, 0x45, 0x48, 0x03, 0x0E, 0x19, 0x14,
  739. 0x37, 0x3A, 0x2D, 0x20,
  740. 0x6D, 0x60, 0x77, 0x7A, 0x59, 0x54, 0x43, 0x4E, 0x05, 0x08, 0x1F, 0x12,
  741. 0x31, 0x3C, 0x2B, 0x26,
  742. 0xBD, 0xB0, 0xA7, 0xAA, 0x89, 0x84, 0x93, 0x9E, 0xD5, 0xD8, 0xCF, 0xC2,
  743. 0xE1, 0xEC, 0xFB, 0xF6,
  744. 0xD6, 0xDB, 0xCC, 0xC1, 0xE2, 0xEF, 0xF8, 0xF5, 0xBE, 0xB3, 0xA4, 0xA9,
  745. 0x8A, 0x87, 0x90, 0x9D,
  746. 0x06, 0x0B, 0x1C, 0x11, 0x32, 0x3F, 0x28, 0x25, 0x6E, 0x63, 0x74, 0x79,
  747. 0x5A, 0x57, 0x40, 0x4D,
  748. 0xDA, 0xD7, 0xC0, 0xCD, 0xEE, 0xE3, 0xF4, 0xF9, 0xB2, 0xBF, 0xA8, 0xA5,
  749. 0x86, 0x8B, 0x9C, 0x91,
  750. 0x0A, 0x07, 0x10, 0x1D, 0x3E, 0x33, 0x24, 0x29, 0x62, 0x6F, 0x78, 0x75,
  751. 0x56, 0x5B, 0x4C, 0x41,
  752. 0x61, 0x6C, 0x7B, 0x76, 0x55, 0x58, 0x4F, 0x42, 0x09, 0x04, 0x13, 0x1E,
  753. 0x3D, 0x30, 0x27, 0x2A,
  754. 0xB1, 0xBC, 0xAB, 0xA6, 0x85, 0x88, 0x9F, 0x92, 0xD9, 0xD4, 0xC3, 0xCE,
  755. 0xED, 0xE0, 0xF7, 0xFA,
  756. 0xB7, 0xBA, 0xAD, 0xA0, 0x83, 0x8E, 0x99, 0x94, 0xDF, 0xD2, 0xC5, 0xC8,
  757. 0xEB, 0xE6, 0xF1, 0xFC,
  758. 0x67, 0x6A, 0x7D, 0x70, 0x53, 0x5E, 0x49, 0x44, 0x0F, 0x02, 0x15, 0x18,
  759. 0x3B, 0x36, 0x21, 0x2C,
  760. 0x0C, 0x01, 0x16, 0x1B, 0x38, 0x35, 0x22, 0x2F, 0x64, 0x69, 0x7E, 0x73,
  761. 0x50, 0x5D, 0x4A, 0x47,
  762. 0xDC, 0xD1, 0xC6, 0xCB, 0xE8, 0xE5, 0xF2, 0xFF, 0xB4, 0xB9, 0xAE, 0xA3,
  763. 0x80, 0x8D, 0x9A, 0x97
  764. ];
  765. /**
  766. * Precomputed lookup of multiplication by 14 in GF(2^8)
  767. * @type {!Array<number>}
  768. * @private
  769. */
  770. goog.crypt.Aes.MULT_E_ = [
  771. 0x00, 0x0E, 0x1C, 0x12, 0x38, 0x36, 0x24, 0x2A, 0x70, 0x7E, 0x6C, 0x62,
  772. 0x48, 0x46, 0x54, 0x5A,
  773. 0xE0, 0xEE, 0xFC, 0xF2, 0xD8, 0xD6, 0xC4, 0xCA, 0x90, 0x9E, 0x8C, 0x82,
  774. 0xA8, 0xA6, 0xB4, 0xBA,
  775. 0xDB, 0xD5, 0xC7, 0xC9, 0xE3, 0xED, 0xFF, 0xF1, 0xAB, 0xA5, 0xB7, 0xB9,
  776. 0x93, 0x9D, 0x8F, 0x81,
  777. 0x3B, 0x35, 0x27, 0x29, 0x03, 0x0D, 0x1F, 0x11, 0x4B, 0x45, 0x57, 0x59,
  778. 0x73, 0x7D, 0x6F, 0x61,
  779. 0xAD, 0xA3, 0xB1, 0xBF, 0x95, 0x9B, 0x89, 0x87, 0xDD, 0xD3, 0xC1, 0xCF,
  780. 0xE5, 0xEB, 0xF9, 0xF7,
  781. 0x4D, 0x43, 0x51, 0x5F, 0x75, 0x7B, 0x69, 0x67, 0x3D, 0x33, 0x21, 0x2F,
  782. 0x05, 0x0B, 0x19, 0x17,
  783. 0x76, 0x78, 0x6A, 0x64, 0x4E, 0x40, 0x52, 0x5C, 0x06, 0x08, 0x1A, 0x14,
  784. 0x3E, 0x30, 0x22, 0x2C,
  785. 0x96, 0x98, 0x8A, 0x84, 0xAE, 0xA0, 0xB2, 0xBC, 0xE6, 0xE8, 0xFA, 0xF4,
  786. 0xDE, 0xD0, 0xC2, 0xCC,
  787. 0x41, 0x4F, 0x5D, 0x53, 0x79, 0x77, 0x65, 0x6B, 0x31, 0x3F, 0x2D, 0x23,
  788. 0x09, 0x07, 0x15, 0x1B,
  789. 0xA1, 0xAF, 0xBD, 0xB3, 0x99, 0x97, 0x85, 0x8B, 0xD1, 0xDF, 0xCD, 0xC3,
  790. 0xE9, 0xE7, 0xF5, 0xFB,
  791. 0x9A, 0x94, 0x86, 0x88, 0xA2, 0xAC, 0xBE, 0xB0, 0xEA, 0xE4, 0xF6, 0xF8,
  792. 0xD2, 0xDC, 0xCE, 0xC0,
  793. 0x7A, 0x74, 0x66, 0x68, 0x42, 0x4C, 0x5E, 0x50, 0x0A, 0x04, 0x16, 0x18,
  794. 0x32, 0x3C, 0x2E, 0x20,
  795. 0xEC, 0xE2, 0xF0, 0xFE, 0xD4, 0xDA, 0xC8, 0xC6, 0x9C, 0x92, 0x80, 0x8E,
  796. 0xA4, 0xAA, 0xB8, 0xB6,
  797. 0x0C, 0x02, 0x10, 0x1E, 0x34, 0x3A, 0x28, 0x26, 0x7C, 0x72, 0x60, 0x6E,
  798. 0x44, 0x4A, 0x58, 0x56,
  799. 0x37, 0x39, 0x2B, 0x25, 0x0F, 0x01, 0x13, 0x1D, 0x47, 0x49, 0x5B, 0x55,
  800. 0x7F, 0x71, 0x63, 0x6D,
  801. 0xD7, 0xD9, 0xCB, 0xC5, 0xEF, 0xE1, 0xF3, 0xFD, 0xA7, 0xA9, 0xBB, 0xB5,
  802. 0x9F, 0x91, 0x83, 0x8D
  803. ];
  804. // clang-format on