opnsense-ports/security/php70-openssl/files/patch-php__openssl.h
Franco Fichtner c6db9d8a7a security/php70-openssl: add crl patches
Porting that stuff to PHP 7 has been quite the adventure.  Needs proper
testing as soon as we can roll out a first test build.
2016-10-30 19:08:31 +01:00

23 lines
811 B
C

--- php_openssl.h.orig 2016-01-06 10:05:22 UTC
+++ php_openssl.h
@@ -86,6 +86,7 @@ PHP_FUNCTION(openssl_x509_export);
PHP_FUNCTION(openssl_x509_fingerprint);
PHP_FUNCTION(openssl_x509_export_to_file);
PHP_FUNCTION(openssl_x509_check_private_key);
+PHP_FUNCTION(openssl_x509_check);
PHP_FUNCTION(openssl_pkcs12_export);
PHP_FUNCTION(openssl_pkcs12_export_to_file);
@@ -98,6 +99,12 @@ PHP_FUNCTION(openssl_csr_sign);
PHP_FUNCTION(openssl_csr_get_subject);
PHP_FUNCTION(openssl_csr_get_public_key);
+PHP_FUNCTION(openssl_crl_new);
+PHP_FUNCTION(openssl_crl_revoke_cert);
+PHP_FUNCTION(openssl_crl_revoke_cert_by_serial);
+PHP_FUNCTION(openssl_crl_export);
+PHP_FUNCTION(openssl_crl_export_file);
+
PHP_FUNCTION(openssl_spki_new);
PHP_FUNCTION(openssl_spki_verify);
PHP_FUNCTION(openssl_spki_export);