diff options
| author | Pierre Joye <pajoye@php.net> | 2007-04-04 21:24:01 +0000 | 
|---|---|---|
| committer | Pierre Joye <pajoye@php.net> | 2007-04-04 21:24:01 +0000 | 
| commit | d4fb0108bc06a4741e60f162c0a6920138b45d3f (patch) | |
| tree | 4737027e5849c6141ed200024964bf264d661b25 /ext/openssl/php_openssl.h | |
| parent | 2a2fd69fbffed807d964208a300634fe7fd170c1 (diff) | |
| download | php-git-d4fb0108bc06a4741e60f162c0a6920138b45d3f.tar.gz | |
- implement #39867, PKCS#12 support
- Fix possible multibyte issues issue in the add_assoc function
- add test for openssl_csr_get_subject
Diffstat (limited to 'ext/openssl/php_openssl.h')
| -rw-r--r-- | ext/openssl/php_openssl.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/ext/openssl/php_openssl.h b/ext/openssl/php_openssl.h index 2193dbc972..2abfe57d50 100644 --- a/ext/openssl/php_openssl.h +++ b/ext/openssl/php_openssl.h @@ -63,6 +63,11 @@ PHP_FUNCTION(openssl_x509_checkpurpose);  PHP_FUNCTION(openssl_x509_export);  PHP_FUNCTION(openssl_x509_export_to_file);  PHP_FUNCTION(openssl_x509_check_private_key); + +PHP_FUNCTION(openssl_pkcs12_export); +PHP_FUNCTION(openssl_pkcs12_export_to_file); +PHP_FUNCTION(openssl_pkcs12_read); +  PHP_FUNCTION(openssl_csr_new);  PHP_FUNCTION(openssl_csr_export);  PHP_FUNCTION(openssl_csr_export_to_file); | 
