/
dimono39
/
education-analytics
Обзор
Документация
Войти
/
dimono39
/
education-analytics
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/apache-crypt/src/index.js
20 строк
462 B
dimono39
добавил файлы
08 дек 2025, 15:17
08 дек 2025, 15:17
40ee2bb
Код
Авторство
О чём код?
"use strict"; // Des module. const des = require("unix-crypt-td-js"); // Hash generation string. const itoa64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; // Salt generation method. function getSalt() { return ( itoa64[parseInt(Math.random() * 64)] + itoa64[parseInt(Math.random() * 64)] ); } // Exporting old style. module.exports = (password, salt) => { return salt ? des(password, salt) : des(password, getSalt()); };