From 4e0fc81e5dfaad3c3ed47a02df4589f5b25a88be Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 22 Aug 2020 22:14:29 +0200 Subject: move cryptojs to addon --- library/cryptojs/components/mode-ecb.js | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 library/cryptojs/components/mode-ecb.js (limited to 'library/cryptojs/components/mode-ecb.js') diff --git a/library/cryptojs/components/mode-ecb.js b/library/cryptojs/components/mode-ecb.js deleted file mode 100644 index 2fcc156d6..000000000 --- a/library/cryptojs/components/mode-ecb.js +++ /dev/null @@ -1,26 +0,0 @@ -/* -CryptoJS v3.1.2 -code.google.com/p/crypto-js -(c) 2009-2013 by Jeff Mott. All rights reserved. -code.google.com/p/crypto-js/wiki/License -*/ -/** - * Electronic Codebook block mode. - */ -CryptoJS.mode.ECB = (function () { - var ECB = CryptoJS.lib.BlockCipherMode.extend(); - - ECB.Encryptor = ECB.extend({ - processBlock: function (words, offset) { - this._cipher.encryptBlock(words, offset); - } - }); - - ECB.Decryptor = ECB.extend({ - processBlock: function (words, offset) { - this._cipher.decryptBlock(words, offset); - } - }); - - return ECB; -}()); -- cgit v1.2.3