Lines Matching refs:passphrase_len

829 		zval * val, int public_key, char *passphrase, size_t passphrase_len,
3726 zval * val, int public_key, char *passphrase, size_t passphrase_len, in php_openssl_evp_from_zval() argument
3759 passphrase_len = Z_STRLEN_P(zphrase); in php_openssl_evp_from_zval()
3764 passphrase_len = Z_STRLEN(tmp); in php_openssl_evp_from_zval()
3869 password.len = passphrase_len; in php_openssl_evp_from_zval()
4509 size_t passphrase_len = 0; in PHP_FUNCTION() local
4518 …M_ARGS(), "zp|s!a!", &zpkey, &filename, &filename_len, &passphrase, &passphrase_len, &args) == FAI… in PHP_FUNCTION()
4523 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase); in PHP_FUNCTION()
4524 key = php_openssl_evp_from_zval(zpkey, 0, passphrase, passphrase_len, 0, &key_resource); in PHP_FUNCTION()
4559 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4565 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4596 char * passphrase = NULL; size_t passphrase_len = 0; in PHP_FUNCTION() local
4603 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz/|s!a!", &zpkey, &out, &passphrase, &passphrase_len,… in PHP_FUNCTION()
4608 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase); in PHP_FUNCTION()
4609 key = php_openssl_evp_from_zval(zpkey, 0, passphrase, passphrase_len, 0, &key_resource); in PHP_FUNCTION()
4636 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4642 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4716 size_t passphrase_len = sizeof("")-1; in PHP_FUNCTION() local
4719 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|s", &cert, &passphrase, &passphrase_len) == FAILURE)… in PHP_FUNCTION()
4723 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase); in PHP_FUNCTION()
4724 pkey = php_openssl_evp_from_zval(cert, 0, passphrase, passphrase_len, 1, &res); in PHP_FUNCTION()