"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.encryptPasswordSha1 = encryptPasswordSha1; const tslib_1 = require("tslib"); const sha1_1 = tslib_1.__importDefault(require("sha1")); function encryptPasswordSha1(password) { return (0, sha1_1.default)(password); }