Lines Matching refs:AES
36801 function AES(key) {
36807 AES.blockSize = 4 * 4;
36808 AES.keySize = 256 / 8;
36809 AES.prototype.blockSize = AES.blockSize;
36810 AES.prototype.keySize = AES.keySize;
36812 AES.prototype._reset = function () {
36855 AES.prototype.encryptBlockRaw = function (M) {
36860 AES.prototype.encryptBlock = function (M) {
36870 AES.prototype.decryptBlock = function (M) {
36885 AES.prototype.scrub = function () {
36891 module.exports.AES = AES;
36952 this._cipher = new aes.AES(key);
37067 this._cipher = new aes.AES(key);
37205 this._cipher = new aes.AES(key);
37862 this._cipher = new aes.AES(key);