hexo-util
Version:
Utilities for Hexo.
19 lines • 632 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.createSha1Hash = exports.hash = void 0;
const crypto_1 = __importDefault(require("crypto"));
const ALGORITHM = 'sha1';
function createSha1Hash() {
return crypto_1.default.createHash(ALGORITHM);
}
exports.createSha1Hash = createSha1Hash;
function hash(content) {
const hash = createSha1Hash();
hash.update(content);
return hash.digest();
}
exports.hash = hash;
//# sourceMappingURL=hash.js.map
;