Lines Matching refs:password_len

4912 	size_t password_len;  in PHP_FUNCTION()  local
4922 &password, &password_len, in PHP_FUNCTION()
4946 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(password_len, password); in PHP_FUNCTION()
4951 …if (PKCS5_PBKDF2_HMAC(password, (int)password_len, (unsigned char *)salt, (int)salt_len, (int)iter… in PHP_FUNCTION()
6273 int key_len, password_len; in php_openssl_cipher_init() local
6302 password_len = (int) *ppassword_len; in php_openssl_cipher_init()
6304 if (key_len > password_len) { in php_openssl_cipher_init()
6305 …OPENSSL_DONT_ZERO_PAD_KEY & options) && !EVP_CIPHER_CTX_set_key_length(cipher_ctx, password_len)) { in php_openssl_cipher_init()
6312 memcpy(key, *ppassword, password_len); in php_openssl_cipher_init()
6317 if (password_len > key_len && !EVP_CIPHER_CTX_set_key_length(cipher_ctx, password_len)) { in php_openssl_cipher_init()
6382 size_t data_len, method_len, password_len, iv_len = 0, aad_len = 0; in PHP_FUNCTION() local
6392 &password, &password_len, &options, &iv, &iv_len, &tag, &aad, &aad_len, &tag_len) == FAILURE) { in PHP_FUNCTION()
6397 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(password_len, password); in PHP_FUNCTION()
6415 &password, &password_len, &free_password, in PHP_FUNCTION()
6481 size_t data_len, method_len, password_len, iv_len = 0, tag_len = 0, aad_len = 0; in PHP_FUNCTION() local
6491 &password, &password_len, &options, &iv, &iv_len, &tag, &tag_len, &aad, &aad_len) == FAILURE) { in PHP_FUNCTION()
6501 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(password_len, password); in PHP_FUNCTION()
6531 &password, &password_len, &free_password, in PHP_FUNCTION()