Home
last modified time | relevance | path

Searched refs:secret (Results 1 – 3 of 3) sorted by last modified time

/dokuwiki/inc/
H A Dinfoutils.php586 if (preg_match('/(notify|pass|auth|secret|ftp|userinfo|token|buid|mail|proxy)/i', $key)) {
H A Dauth.php287 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
288 auth_setCookie($user, auth_encrypt($pass, $secret), $sticky);
323 $secret = auth_cookiesalt(!$sticky, true); //bind non-sticky to session
324 $pass = auth_decrypt($pass, $secret);
427 * Encrypt data using the given secret using AES
433 * @param string $secret The secret/password that shall be used
437 function auth_encrypt($data, $secret)
441 $cipher->setPassword($secret, 'pbkdf2', 'sha1', 'phpseclib');
459 * @param string $secret Th
367 auth_encrypt($data, $secret) global() argument
390 auth_decrypt($ciphertext, $secret) global() argument
[all...]
/dokuwiki/lib/plugins/authldap/
H A Dauth.php343 $secret = auth_cookiesalt(!$loginsticky, true);
344 $pass = auth_decrypt($loginpass, $secret);