Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

openssl_pbkdf2(3) [php man page]

OPENSSL_PBKDF2(3)							 1							 OPENSSL_PBKDF2(3)

openssl_pbkdf2 - Generates a PKCS5 v2 PBKDF2 string, defaults to SHA-1

SYNOPSIS
string openssl_pbkdf2 (string $password, string $salt, int $key_length, int $iterations, [string $digest_algorithm]) DESCRIPTION
Warning This function is currently not documented; only its argument list is available. PARAMETERS
o $password - o $salt - o $key_length - o $iterations - o $digest_algorithm - RETURN VALUES
Returns string or FALSE on failure. PHP Documentation Group OPENSSL_PBKDF2(3)

Check Out this Related Man Page

ns_crypt(3aolserver)					    AOLserver Built-In Commands 				      ns_crypt(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
ns_crypt - commands SYNOPSIS
ns_crypt key salt _________________________________________________________________ DESCRIPTION
ns_crypt encrypted the key, also known as the password, using the salt and returns the result. It uses the same algorithm as the unix crypt command. The result from ns_crypt is a 13-character string. The first two characters correspond to the salt, and the remaining eleven characters correspond to the password encrypted with the specified salt. The password is a string (typically that of a password to be used for nscp and/or nsperm authentication). salt should be two characters, typically from the set [a-zA-Z0-9./]. If the empty string is specified as the salt then ns_crypt returns the empty string. If a string longer than two characters is specified for the salt it is truncated to two characters. If a one character salt is provided the output will appear to have a two-character salt (the single character repeated), however, the encrypted value does not correspond to the same password being encrypted with the equivalent two character salt. (As a result sticking with a two character salt is highly recommended.) Input to ns_crypt is case-sensitive. EXAMPLES
nscp> ns_crypt aolserver ns ns0WvClsyIL4A nscp> ns_crypt aolserver NS NSDQ1dPM.409Q nscp> ns_crypt aolserver tcl tcAbgtlzbEhVc nscp> ns_crypt aolserver tc tcAbgtlzbEhVc nscp> ns_crypt aolserver .. ..7TNvXHLxJ9Y nscp> ns_crypt aolserver . ..fwmBaZuzrRs SEE ALSO
nsd(1), info(n), nscp, nsperm, crypt(3) KEYWORDS
AOLserver 4.0 ns_crypt(3aolserver)
Man Page