summaryrefslogtreecommitdiff
path: root/bot/node_modules/crypto-js/pad-pkcs7.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot/node_modules/crypto-js/pad-pkcs7.js')
-rw-r--r--bot/node_modules/crypto-js/pad-pkcs7.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/bot/node_modules/crypto-js/pad-pkcs7.js b/bot/node_modules/crypto-js/pad-pkcs7.js
new file mode 100644
index 0000000..3555168
--- /dev/null
+++ b/bot/node_modules/crypto-js/pad-pkcs7.js
@@ -0,0 +1,18 @@
+;(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) {
+
+ return CryptoJS.pad.Pkcs7;
+
+})); \ No newline at end of file