3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00
dbot/modules/crypto/crypto.js
2013-12-26 06:55:12 +00:00

37 lines
1.2 KiB
JavaScript

/**
* Module Name: Flashy
* Description: Makes pages with flashing text and that innit.
*/
var MD5 = require('crypto-js/md5');
var SHA1 = require('crypto-js/sha1');
var SHA256 = require('crypto-js/sha256');
var SHA512 = require('crypto-js/sha512');
var AES = require('crypto-js/aes');
var crypto = function(dbot) {
this.commands = {
'~md5': function(event) {
event.reply("MD5 hash of "+event.input[1]+" is: "+MD5(event.input[1]));
},
'~sha1': function(event) {
event.reply("SHA1 hash of "+event.input[1]+" is: "+SHA1(event.input[1]));
},
'~sha256': function(event) {
event.reply("SHA256 hash of "+event.input[1]+" is: "+SHA256(event.input[1]));
},
'~aes': function(event) {
event.reply("AES of "+event.input[1]+" is: "+AES.encrypt(event.input[1],event.input[2]));
}
};
this.commands['~md5'].regex = /^~md5 ([^ ]+)$/;
this.commands['~sha1'].regex = /^~sha1 ([^ ]+)$/;
this.commands['~sha256'].regex = /^~sha256 ([^ ]+)$/;
this.commands['~aes'].regex = /^~aes "(.*)" "(.*)"$/;
};
exports.fetch = function(dbot) {
return new crypto(dbot);
};