Lines Matching refs:passphrase_len

862 		zval * val, int public_key, char *passphrase, size_t passphrase_len,
3808 zval * val, int public_key, char *passphrase, size_t passphrase_len, in php_openssl_evp_from_zval() argument
3841 passphrase_len = Z_STRLEN_P(zphrase); in php_openssl_evp_from_zval()
3849 passphrase_len = Z_STRLEN(tmp); in php_openssl_evp_from_zval()
3956 password.len = passphrase_len; in php_openssl_evp_from_zval()
4595 size_t passphrase_len = 0; in PHP_FUNCTION() local
4604 …M_ARGS(), "zp|s!a!", &zpkey, &filename, &filename_len, &passphrase, &passphrase_len, &args) == FAI… in PHP_FUNCTION()
4609 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase); in PHP_FUNCTION()
4610 key = php_openssl_evp_from_zval(zpkey, 0, passphrase, passphrase_len, 0, &key_resource); in PHP_FUNCTION()
4645 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4651 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4682 char * passphrase = NULL; size_t passphrase_len = 0; in PHP_FUNCTION() local
4689 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz|s!a!", &zpkey, &out, &passphrase, &passphrase_len, … in PHP_FUNCTION()
4694 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase); in PHP_FUNCTION()
4695 key = php_openssl_evp_from_zval(zpkey, 0, passphrase, passphrase_len, 0, &key_resource); in PHP_FUNCTION()
4722 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4728 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4800 size_t passphrase_len = sizeof("")-1; in PHP_FUNCTION() local
4803 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|s", &cert, &passphrase, &passphrase_len) == FAILURE)… in PHP_FUNCTION()
4807 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase); in PHP_FUNCTION()
4808 pkey = php_openssl_evp_from_zval(cert, 0, passphrase, passphrase_len, 1, &res); in PHP_FUNCTION()