Lines Matching refs:passphrase_len
659 zval *val, int public_key, char *passphrase, size_t passphrase_len, uint32_t arg_num);
3602 zval *val, int public_key, char *passphrase, size_t passphrase_len, uint32_t arg_num) in php_openssl_pkey_from_zval() argument
3630 passphrase_len = Z_STRLEN_P(zphrase); in php_openssl_pkey_from_zval()
3639 passphrase_len = Z_STRLEN(tmp); in php_openssl_pkey_from_zval()
3736 password.len = passphrase_len; in php_openssl_pkey_from_zval()
4897 size_t passphrase_len = 0; in PHP_FUNCTION() local
4905 …M_ARGS(), "zp|s!a!", &zpkey, &filename, &filename_len, &passphrase, &passphrase_len, &args) == FAI… in PHP_FUNCTION()
4910 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase, 3); in PHP_FUNCTION()
4912 key = php_openssl_pkey_from_zval(zpkey, 0, passphrase, passphrase_len, 1); in PHP_FUNCTION()
4945 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
4968 char * passphrase = NULL; size_t passphrase_len = 0; in PHP_FUNCTION() local
4974 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz|s!a!", &zpkey, &out, &passphrase, &passphrase_len, … in PHP_FUNCTION()
4979 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase, 3); in PHP_FUNCTION()
4981 key = php_openssl_pkey_from_zval(zpkey, 0, passphrase, passphrase_len, 1); in PHP_FUNCTION()
5006 (unsigned char *)passphrase, (int)passphrase_len, NULL, NULL); in PHP_FUNCTION()
5062 size_t passphrase_len = sizeof("")-1; in PHP_FUNCTION() local
5064 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|s!", &cert, &passphrase, &passphrase_len) == FAILURE… in PHP_FUNCTION()
5069 PHP_OPENSSL_CHECK_SIZE_T_TO_INT(passphrase_len, passphrase, 2); in PHP_FUNCTION()
5072 pkey = php_openssl_pkey_from_zval(cert, 0, passphrase, passphrase_len, 1); in PHP_FUNCTION()