| 123456789101112131415 |
- // Generated by IcedCoffeeScript 1.7.1-c
- (function() {
- var SHA256, SHA512, createHash;
- createHash = require('crypto').createHash;
- exports.SHA256 = SHA256 = function(x) {
- return createHash('SHA256').update(x).digest();
- };
- exports.SHA512 = SHA512 = function(x) {
- return createHash('SHA512').update(x).digest();
- };
- }).call(this);
|