Home
last modified time | relevance | path

Searched refs:password (Results 1 – 25 of 423) sorted by relevance

12345678910>>...17

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSimpleBindRequest.php34 protected $password; variable in FreeDSx\\Ldap\\Operation\\Request\\SimpleBindRequest
38 * @param string $password
41 public function __construct(string $username, string $password, int $version = 3) argument
44 $this->password = $password;
53 return $this->password;
57 * @param string $password
60 public function setPassword(string $password) argument
62 $this->password = $password;
72 return Asn1::context(0, Asn1::octetString($this->password));
80 if ($this->username === '' || $this->password === '') {
/plugin/encryptedpasswords/script/
DSubtleAES.js17 async encrypt(plaintext, password) { argument
20 const {hash, iv} = await this.derivePkdf2(password, salt, 'SHA-256', this.iterations);
38 async decrypt(ciphertext, password, legacy = false) { argument
43 ({hash, iv} = this.deriveMd5(password, salt));
45 ({hash, iv} = await this.derivePkdf2(password, salt, 'SHA-256', this.iterations));
66 async autodecrypt(ciphertext, password) { argument
68 return await this.decrypt(ciphertext, password);
72 return await this.decrypt(ciphertext, password, true);
132 const password = new TextEncoder().encode(strPassword);
134 …const ik = await window.crypto.subtle.importKey("raw", password, {name: "PBKDF2"}, false, ["derive…
[all …]
/plugin/swiftmail/Swift/Authenticator/
DCRAMMD5.php57 public static function generateCRAMMD5Hash($password, $challenge) argument
59 if (strlen($password) > 64)
60 $password = pack('H32', md5($password));
62 if (strlen($password) < 64)
63 $password = str_pad($password, 64, chr(0));
65 $k_ipad = substr($password, 0, 64) ^ str_repeat(chr(0x36), 64);
66 $k_opad = substr($password, 0, 64) ^ str_repeat(chr(0x5C), 64);
/plugin/authdrupal8/
Dpassword.inc5 * Secure password hashing functions for user authentication.
7 * Based on the Portable PHP password hashing framework.
10 * An alternative or custom version of this password hashing API may be
17 * The standard log2 number of iterations for password stretching. This should
23 // The minimum allowed log2 number of iterations for password stretching.
26 // The maximum allowed log2 number of iterations for password stretching.
29 // The expected (and maximum) number of characters in a hashed password.
81 * password without actually having to guess one of the passwords.
123 * Hash a password using a secure stretched hash.
125 * By using a salt and repeated hashing the password is "stretched". Its
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
DPublicKeyLoader.php39 * @param string $password optional
41 public static function load($key, $password = false) argument
44 return EC::load($key, $password);
49 return RSA::load($key, $password);
54 return DSA::load($key, $password);
77 * @param string $password optional
79 public static function loadPrivateKey($key, $password = false) argument
81 $key = self::load($key, $password);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
DPuTTY.php82 * @param string $password
86 private static function generateV2Key($password, $length) argument
91 $temp = pack('Na*', $sequence++, $password);
101 * @param string $password
108 private static function generateV3Key($password, $flavour, $memory, $passes, $salt) argument
126 $temp = sodium_crypto_pwhash($length, $password, $salt, $passes, $memory << 10, $flavour);
140 * @param string $password
143 public static function load($key, $password) argument
243 extract(self::generateV3Key($password, $flavour, $memory, $passes, $salt));
247 $symkey = self::generateV2Key($password, 32);
[all …]
DPKCS1.php106 * @param string $password
111 private static function generateSymmetricKey($password, $iv, $length) argument
116 $symkey .= md5($symkey . $password . $iv, true);
126 * @param string $password optional
129 protected static function load($key, $password) argument
159 … $crypto->setKey(self::generateSymmetricKey($password, $iv, $crypto->getKeyLength() >> 3));
182 * @param string $password
186 protected static function wrapPrivateKey($key, $type, $password, array $options = []) argument
188 if (empty($password) || !is_string($password)) {
198 $cipher->setKey(self::generateSymmetricKey($password, $iv, $cipher->getKeyLength() >> 3));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/Token/
H A DBindToken.php29 protected $password; variable in FreeDSx\\Ldap\\Server\\Token\\BindToken
38 * @param string $password
41 public function __construct(string $username, string $password, int $version = 3) argument
44 $this->password = $password;
61 return $this->password;
/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DDigestTest.php43 $password = 12345;
48 md5($username . ':' . self::REALM . ':' . $password) . ':' .
63 …True($this->auth->validateA1(md5($username . ':' . self::REALM . ':' . $password)), 'Authenticatio…
64 …$this->assertTrue($this->auth->validatePassword($password), 'Authentication is deemed invalid thro…
73 $password = 12345;
78 md5($username . ':' . self::REALM . ':' . $password) . ':' .
91 …lse($this->auth->validateA1(md5($username . ':' . self::REALM . ':' . ($password . 'randomness')))…
112 $password = 12345;
117 md5($username . ':' . self::REALM . ':' . $password) . ':' .
131 …True($this->auth->validateA1(md5($username . ':' . self::REALM . ':' . $password)), 'Authenticatio…
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManagedServiceforMicrosoftActiveDirectoryConsumerAPI/
DResetAdminPasswordResponse.php25 public $password; variable in Google\\Service\\ManagedServiceforMicrosoftActiveDirectoryConsumerAPI\\ResetAdminPasswordResponse
30 public function setPassword($password) argument
32 $this->password = $password;
39 return $this->password;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/
DPasswordProtected.php32 private $password = false; variable
43 * @param string|bool $password
45 public function withPassword($password = false) argument
48 $new->password = $password;
/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/
DUserPasswordTrait.php54 public function withPassword(?string $password) argument
57 $new->authentication['password'] = $password;
65 $password = $this->getPassword() ?? '';
67 if ('' === $password && '' === $user) {
71 return $user.('' === $password ? '' : ':'.$password).'@';
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
DBasicAuthentication.php25 public $password; variable in Google\\Service\\Monitoring\\BasicAuthentication
34 public function setPassword($password) argument
36 $this->password = $password;
43 return $this->password;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BigQueryConnectionService/
DCloudSqlCredential.php25 public $password; variable in Google\\Service\\BigQueryConnectionService\\CloudSqlCredential
34 public function setPassword($password) argument
36 $this->password = $password;
43 return $this->password;
/plugin/authwordpress/
H A Dclass-phpass.php131 function crypt_private($password, $setting) argument
162 $hash = md5($salt . $password, TRUE);
164 $hash = md5($hash . $password, TRUE);
214 function HashPassword($password) argument
216 if ( strlen( $password ) > 4096 ) {
225 crypt($password, $this->gensalt_blowfish($random));
235 $this->crypt_private($password,
247 function CheckPassword($password, $stored_hash) argument
249 if ( strlen( $password ) > 4096 ) {
253 $hash = $this->crypt_private($password, $stored_hash);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
DMontgomeryPrivate.php52 * @param string $password optional
55 public static function load($key, $password = '') argument
97 * @param string $password optional
100 …on savePrivateKey(BigInteger $privateKey, MontgomeryCurve $curve, array $publicKey, $password = '') argument
102 if (!empty($password) && is_string($password)) {
Dlibsodium.php49 * @param string $password optional
52 public static function load($key, $password = '') argument
105 * @param string $password optional
108 …c function savePrivateKey(BigInteger $privateKey, Ed25519 $curve, array $publicKey, $password = '') argument
116 if (!empty($password) && is_string($password)) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/VMMigrationService/
DVmwareSourceDetails.php25 public $password; variable in Google\\Service\\VMMigrationService\\VmwareSourceDetails
42 public function setPassword($password) argument
44 $this->password = $password;
51 return $this->password;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Gmail/
DSmtpMsa.php29 public $password; variable in Google\\Service\\Gmail\\SmtpMsa
60 public function setPassword($password) argument
62 $this->password = $password;
69 return $this->password;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/
DForwardSshTunnelConnectivity.php29 public $password; variable in Google\\Service\\Datastream\\ForwardSshTunnelConnectivity
60 public function setPassword($password) argument
62 $this->password = $password;
69 return $this->password;
DMysqlProfile.php29 public $password; variable in Google\\Service\\Datastream\\MysqlProfile
58 public function setPassword($password) argument
60 $this->password = $password;
67 return $this->password;
DOracleProfile.php37 public $password; variable in Google\\Service\\Datastream\\OracleProfile
92 public function setPassword($password) argument
94 $this->password = $password;
101 return $this->password;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
DGoogleCloudDialogflowCxV3WebhookGenericWebService.php30 public $password; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3WebhookGenericWebService
61 public function setPassword($password) argument
63 $this->password = $password;
70 return $this->password;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
DPuTTY.php57 * @param string $password optional
60 public static function load($key, $password = '') argument
62 $components = parent::load($key, $password);
84 * @param string $password optional
88 …nteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $password = false, array $o… argument
97 return self::wrapPrivateKey($public, $private, 'ssh-dsa', $password, $options);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/
DDemoteMasterMySqlReplicaConfiguration.php41 public $password; variable in Google\\Service\\SQLAdmin\\DemoteMasterMySqlReplicaConfiguration
106 public function setPassword($password) argument
108 $this->password = $password;
115 return $this->password;

12345678910>>...17