summaryrefslogtreecommitdiff
path: root/ext/openssl/php_openssl.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2001-09-11 00:03:58 +0000
committerWez Furlong <wez@php.net>2001-09-11 00:03:58 +0000
commit0f835fdf287c40fb3d0bba5f6a5ba2cd2a9d9d99 (patch)
tree964fa71fdea5cda49ac5ae8cb2bd3969a1876839 /ext/openssl/php_openssl.h
parent3b8f3cc4399bc2217014c326d9a98033957327f7 (diff)
downloadphp-git-0f835fdf287c40fb3d0bba5f6a5ba2cd2a9d9d99.tar.gz
Arrrgghh!
Fix munched file. # Dunno how that happened.
Diffstat (limited to 'ext/openssl/php_openssl.h')
-rw-r--r--ext/openssl/php_openssl.h21
1 files changed, 16 insertions, 5 deletions
diff --git a/ext/openssl/php_openssl.h b/ext/openssl/php_openssl.h
index 65955f9509..546a5bde13 100644
--- a/ext/openssl/php_openssl.h
+++ b/ext/openssl/php_openssl.h
@@ -13,6 +13,7 @@
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Stig Venaas <venaas@php.net> |
+ | Wez Furlong <wez@thebrainroom.com |
+----------------------------------------------------------------------+
*/
@@ -28,11 +29,13 @@ extern zend_module_entry openssl_module_entry;
PHP_MINIT_FUNCTION(openssl);
PHP_MSHUTDOWN_FUNCTION(openssl);
PHP_MINFO_FUNCTION(openssl);
-PHP_FUNCTION(openssl_get_privatekey);
-PHP_FUNCTION(openssl_get_publickey);
-PHP_FUNCTION(openssl_free_key);
-PHP_FUNCTION(openssl_x509_read);
-PHP_FUNCTION(openssl_x509_free);
+
+PHP_FUNCTION(openssl_pkey_get_private);
+PHP_FUNCTION(openssl_pkey_get_public);
+PHP_FUNCTION(openssl_pkey_free);
+PHP_FUNCTION(openssl_pkey_new);
+PHP_FUNCTION(openssl_pkey_export);
+
PHP_FUNCTION(openssl_sign);
PHP_FUNCTION(openssl_verify);
PHP_FUNCTION(openssl_seal);
@@ -48,8 +51,16 @@ PHP_FUNCTION(openssl_pkcs7_sign);
PHP_FUNCTION(openssl_pkcs7_encrypt);
PHP_FUNCTION(openssl_error_string);
+
+PHP_FUNCTION(openssl_x509_read);
+PHP_FUNCTION(openssl_x509_free);
PHP_FUNCTION(openssl_x509_parse);
PHP_FUNCTION(openssl_x509_checkpurpose);
+PHP_FUNCTION(openssl_x509_export);
+PHP_FUNCTION(openssl_x509_check_private_key);
+PHP_FUNCTION(openssl_csr_new);
+PHP_FUNCTION(openssl_csr_export);
+PHP_FUNCTION(openssl_csr_sign);
#else