Home
last modified time | relevance | path

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

12345678910>>...16

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSimpleBindRequest.php19 * Represents a simple bind request consisting of a username (dn, etc) and a password.
34 protected $password;
38 * @param string $password
41 public function __construct(string $username, string $password, int $version = 3)
44 $this->password = $password;
53 return $this->password;
57 * @param string $password
60 public function setPassword(string $password)
62 $this->password
33 protected $password; global() variable in FreeDSx\\Ldap\\Operation\\Request\\SimpleBindRequest
40 __construct(string $username, string $password, int $version = 3) global() argument
59 setPassword(string $password) global() argument
[all...]
/plugin/swiftmail/Swift/Authenticator/
H A 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/encryptedpasswords/script/
H A DSubtleAES.js14 * @param {String} password Password to use to encrypt plaintext
17 async encrypt(plaintext, password) { argument
20 const {hash, iv} = await this.derivePkdf2(password, salt, 'SHA-256', this.iterations);
34 * @param {String} password Password to use to decrypt ciphertext
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));
63 * @param {String} password Password to use to decrypt ciphertext
66 async autodecrypt(ciphertext, password) { argument
68 return await this.decrypt(ciphertext, password);
[all...]
/plugin/authdrupal8/
H A 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 i
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A 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/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/Token/
H A DBindToken.php15 * Represents a username/password token that is bound and authorized.
29 protected $password;
38 * @param string $password
41 public function __construct(string $username, string $password, int $version = 3)
44 $this->password = $password;
61 return $this->password;
28 protected $password; global() variable in FreeDSx\\Ldap\\Server\\Token\\BindToken
40 __construct(string $username, string $password, int $version = 3) global() argument
/plugin/authwordpress/
H A Dclass-phpass.php3 * Portable PHP password hashing framework.
20 # Please do not change the "private" password hashing method implemented in
29 * Portable PHP password hashing framework.
121 function crypt_private($password, $setting) argument
149 $hash = md5($salt . $password, TRUE);
151 $hash = md5($hash . $password, TRUE);
154 $hash = pack('H*', md5($salt . $password));
156 $hash = pack('H*', md5($hash . $password));
225 function HashPassword($password) argument
227 if ( strlen( $password ) > 409
264 CheckPassword($password, $stored_hash) global() argument
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php82 * @param string $password
86 private static function generateV2Key($password, $length) argument
91 $temp = pack('Na*', $sequence++, $password);
101 * @param string $password
140 * @param string $password
143 public static function load($key, $password) argument
249 $hashkey .= $password;
294 * @param string $password
300 $encryption = (!empty($password) || is_string($password)) ? 'aes256-cbc' : 'none';
316 if (empty($password) && !is_string($password)) {
[all …]
H A 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/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/
H A DPasswordProtected.php32 private $password = false; variable
43 * @param string|bool $password
45 public function withPassword($password = false) argument
48 $new->password = $password;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManagedServiceforMicrosoftActiveDirectoryConsumerAPI/
H A 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/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) . ':' .
112 $password = 12345;
117 md5($username . ':' . self::REALM . ':' . $password) . ':' .
131 …True($this->auth->validateA1(md5($username . ':' . self::REALM . ':' . $password)), 'Authenticatio…
141 $password = 12345;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BigQueryConnectionService/
H A 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/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A 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/elasticsearch/vendor/nyholm/dsn/src/Configuration/
H A DUserPasswordTrait.php10 * @var array{ user: string|null, password: string|null, }
12 private $authentication = ['user' => null, 'password' => null];
20 * @param array{ user?: string|null, password?: string|null, } $authentication
26 $this->authentication['password'] = $authentication['password'] ?? null;
48 return $this->authentication['password'] ?? null;
54 public function withPassword(?string $password) argument
57 $new->authentication['password'] = $password;
65 $password
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A 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)) {
H A 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/
H A 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/Datastream/
H A DForwardSshTunnelConnectivity.php29 public $password; variable in Google\\Service\\Datastream\\ForwardSshTunnelConnectivity
60 public function setPassword($password) argument
62 $this->password = $password;
69 return $this->password;
H A DMysqlProfile.php29 public $password; variable in Google\\Service\\Datastream\\MysqlProfile
58 public function setPassword($password) argument
60 $this->password = $password;
67 return $this->password;
H A 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/Gmail/
H A 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/Dialogflow/
H A 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/
H A 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/
H A 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>>...16