title: “CRYPT::UNIX_CRYPT” version: “1g” date: “2023-12-21” author: “laplante@plcb.ca”
crypt::unix_crypt performs password encryption as in unix
crypt::unix_crypt or unix_crypt(passwd, salt[, error: variable]) crypt::unixCrypt or unixCrypt(passwd, salt[, error: variable])
The crypt()
function performs password encryption, based on the NBS Data Encryption Standard (DES).
res={{
unix_crypt("laplante","12345");
}}.
res=128vvx6YaP3dY.
laplante@plcb.ca