Files
xiao/commands/text-edit/sha-256.js
T
Daniel Odendahl Jr b556d616b3 sha256
2018-02-19 16:05:53 +00:00

26 lines
601 B
JavaScript

const { Command } = require('discord.js-commando');
const crypto = require('crypto');
module.exports = class SHA256Command extends Command {
constructor(client) {
super(client, {
name: 'sha-256',
aliases: ['sha-256-hash'],
group: 'text-edit',
memberName: 'sha-256',
description: 'Creates a hash of text with the SHA-256 algorithm.',
args: [
{
key: 'text',
prompt: 'What text would you like to create an SHA-256 hash of?',
type: 'string'
}
]
});
}
run(msg, { text }) {
return msg.say(crypto.createHash('sha256').update(text).digest('hex'));
}
};