summaryrefslogtreecommitdiff
path: root/ext/openssl/openssl.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* MFH: Improved ext/opensslDmitry Stogov2007-09-271-44/+531
| | | | | | | . Added support for OpenSSL digest functions . Added support for OpenSSL cipher functions . Added access to internal values of DSA, RSA and DH keys
* - fix regression introduced with #42222 (thx to tony and mattias for thePierre Joye2007-08-081-2/+2
| | | | | head up)
* - #42222, forgot this one (thanks mattias)Pierre Joye2007-08-061-1/+1
|
* - #42222, truncate the _default to the buffer size (was 200 since day #1, we ↵Pierre Joye2007-08-061-1/+3
| | | | don't need dynamic alloc here)
* mproced openssl_x509_parse() to return extensions in readable formDmitry Stogov2007-07-111-4/+17
|
* Fixed memory leakDmitry Stogov2007-07-111-0/+1
|
* Fixed crash on non-string passphraseDmitry Stogov2007-07-111-0/+1
|
* Fixed a memory leak inside load_all_certs_file()Ilia Alshanetsky2007-06-191-0/+3
|
* - #41423. PHP assumes wrongly that certain ciphers are enabled in OpenSSLPierre Joye2007-05-191-0/+10
|
* Fixed bug #41353 (crash in openssl_pkcs12_read() on invalid input).Ilia Alshanetsky2007-05-131-6/+6
|
* fix win32 buildRob Richards2007-04-051-3/+2
|
* fix ZTS buildAntony Dovgal2007-04-051-3/+3
|
* - nuke c++ commentsPierre Joye2007-04-041-8/+7
|
* - implement #39867, PKCS#12 supportPierre Joye2007-04-041-2/+341
| | | | | | - Fix possible multibyte issues issue in the add_assoc function - add test for openssl_csr_get_subject
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-1/+1
|
* MFH: fix accessing public key from x509 resourceRob Richards2007-01-201-3/+3
| | | | | | add test fix test under win32
* Fixed bug #39394 (Missing check for older variants of openssl).Ilia Alshanetsky2007-01-071-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* - MFH: #39217, serialNumber might be -1 when the value is too bigPierre Joye2006-11-151-1/+2
|
* fix compile warningAntony Dovgal2006-10-151-1/+1
|
* - fix possible segfault (see test 004) always exists and returns NULL onPierre Joye2006-10-091-2/+2
| | | | | error
* fix mem leak. hash keys dont need to be strdup'edNuno Lopes2006-09-161-1/+1
|
* remove a leftoverAntony Dovgal2006-09-121-1/+1
|
* implement feature request #38731 (openssl_pkey_new does not support DSA key ↵Antony Dovgal2006-09-081-1/+19
| | | | | | | generation) patch by marci at balabit dot hu
* Fixed memory leaks in openssl test #004Ilia Alshanetsky2006-09-071-13/+34
|
* MFH: init variablesAntony Dovgal2006-09-051-1/+2
|
* - add OPENSSL_VERSION_TEXT and OPENSSL_VERSION_NUMBER constantsPierre Joye2006-09-031-0/+3
| | | | | - skip tests if openssl version < 0.9.7j (known to work)
* MFH: fix problem with mixed arguments accepted as zval* causing ↵Antony Dovgal2006-08-311-79/+79
| | | | leaks/segfaults when converting to other types
* fix segfault/leak, add testAntony Dovgal2006-08-301-1/+1
|
* MFH: fix segfault in openssl_seal(), add testAntony Dovgal2006-08-301-0/+2
|
* fix #38486 (openssl extension does not build correctly)Antony Dovgal2006-08-181-0/+6
|
* - add openssl_csr_get_subject() and openssl_csr_get_public_key()Pierre Joye2006-08-151-6/+67
|
* - add OPENSSL_KEYTYPE_EC constantPierre Joye2006-08-151-1/+64
| | | | | - openssl_pkey_get_details(), returns the key details
* Fixed compiler warning.Ilia Alshanetsky2006-07-311-2/+2
|
* - #36732, add req_extensions support to openssl_csr_new and _signPierre Joye2006-07-311-19/+20
| | | | | | (ben at psc dot edu) - fix leaks in openssl_csr_new and sign
* - #28382, add support for x509 extensionsPierre Joye2006-07-301-0/+15
|
* - 38261: openssl_x509_parse leaks with invalid certsPierre Joye2006-07-301-0/+5
|
* - silent compiler warnings (signess)Pierre Joye2006-07-301-25/+25
|
* - MFH: make the test more obvious and add an explanationPierre Joye2006-07-291-2/+4
|
* - vi happiness++Pierre Joye2006-07-291-17/+31
|
* - #38255, fails on array as wellPierre Joye2006-07-291-1/+2
|
* - fix leak when the key is not a valid key (like false or an array)Pierre Joye2006-07-291-22/+44
|
* Add two new context options for ssl:Wez Furlong2006-04-301-0/+5
| | | | | | | | | | | | | "capture_peer_cert" and "capture_peer_cert_chain" If true, the peer certificate and peer certificate chain respectively will be captured and made available in the ssl context variables "peer_certificate" and "peer_certificate_chain" respectively. The certificates are exposed as x509 certificate resources and can be inspected using the existing openssl extension functions. This allows applications to perform extended validation.
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* MFH: - Fixed bug #35381 (ssl library is not initialized properly)foobar2005-11-281-0/+1
|
* MFH: Nuked EOLs from error messagesfoobar2005-08-181-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Add optional parameter to openssl_pkcs7_verify() which specifies the nameWez Furlong2005-06-301-6/+20
| | | | | | | | of a file that will be filled with the verified data, but with the signature information stripped. Patch by Marton Kenyeres, mkenyeres (at) konvergencia dot hu