summaryrefslogtreecommitdiff
path: root/www/lib/crypto-js/mode-ecb.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/lib/crypto-js/mode-ecb.js')
-rw-r--r--www/lib/crypto-js/mode-ecb.js40
1 files changed, 0 insertions, 40 deletions
diff --git a/www/lib/crypto-js/mode-ecb.js b/www/lib/crypto-js/mode-ecb.js
deleted file mode 100644
index ff069217..00000000
--- a/www/lib/crypto-js/mode-ecb.js
+++ /dev/null
@@ -1,40 +0,0 @@
-;(function (root, factory, undef) {
- if (typeof exports === "object") {
- // CommonJS
- module.exports = exports = factory(require("./core"), require("./cipher-core"));
- }
- else if (typeof define === "function" && define.amd) {
- // AMD
- define(["./core", "./cipher-core"], factory);
- }
- else {
- // Global (browser)
- factory(root.CryptoJS);
- }
-}(this, function (CryptoJS) {
-
- /**
- * 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;
- }());
-
-
- return CryptoJS.mode.ECB;
-
-})); \ No newline at end of file