summaryrefslogtreecommitdiff
path: root/ext/openssl
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #50859 (build fails with openssl 1.0 due to md2 deprecation)Ilia Alshanetsky2010-01-271-1/+7
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-033-3/+3
|
* added timezone define for NetWare.Guenter Knauf2009-11-031-0/+4
|
* - Fixed memory leak in openssl_pkcs12_export_to_file()Felipe Pena2009-10-271-2/+3
|
* TSRMLSArnaud Le Blanc2009-10-221-3/+2
|
* fix ZTS buildAntony Dovgal2009-10-221-0/+1
|
* Added client-side Server Name Indication (SNI) support in OpenSSL extension.Arnaud Le Blanc2009-10-213-0/+242
| | | | | | | | | | | | | | | | | | | | | | | | | | | | # # [DOC] # # New SSL context options : # # - SNI_enabled : Set to FALSE to disable SNI support (enabled by default) # - SNI_server_name : If not set, the server name will be guessed from the # stream URL (e.g. https://example.com/ will use example.com as hostname.), # else the given name will be used. # # SNI is to SSL/TLS what the Host header is for HTTP : it allows multiple # certificates on the same IP address. # # As for HTTP virtual hosts, this should be totaly transparent in most cases. # # Context options allows more control, e.g. : # # $context = stream_context_create(array( # 'ssl' => array('SNI_server_name' => 'foo.example.com'), # 'http' => array('header' => 'Host: foo.example.com'), # )); # file_get_contents('https://127.0.0.1/', false, $context); # # OpenSSL >= 0.9.8j supports SNI (by default since OpenSSL 0.9.8k).
* Fixed test (it failed from time to time because of very small timeouts)Dmitry Stogov2009-09-221-3/+3
|
* Fixed certificate validation inside php_openssl_apply_verification_policyIlia Alshanetsky2009-09-141-5/+9
|
* - Fixed bug #49447 (php engine need to correctly check for socket API Sriram Natarajan2009-09-041-0/+4
| | | | | return status on windows). (Sriram Natarajan)
* Fixes a memory leak in ssl streams. The context was not properly freedMikko Koppanen2009-08-221-6/+14
|
* - Fixed compile failure with older openssl libs (< 0.9.8), fixes bug #49012Jani Taskinen2009-07-301-0/+4
|
* - 48182 ssl handshake fails during asynchronous socket connectionSriram Natarajan2009-07-282-1/+97
|
* - #48116, fix build with openssl 1.0Pierre Joye2009-07-061-6/+13
|
* Closes #47991 SSL streams fail if error stack contains itemsMikko Koppanen2009-04-201-0/+1
|
* I wish people would test their changes before comitting, especially since ↵Scott MacVicar2009-03-301-1/+1
| | | | the test is *IDENTICAL* as before just with different formatting.
* - MFB: better test case, it crashes on more architecturePierre Joye2009-03-301-3/+28
|
* Add test for bug #47828Scott MacVicar2009-03-301-0/+15
|
* Fix bug #47828 - Converting to UTF-8 can sometimes fail, check error codes ↵Scott MacVicar2009-03-291-2/+4
| | | | and avoid segfault.
* - This is PHP 6 - if this ... ever gets outMarcus Boerger2009-03-103-3/+3
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-313-3/+3
|
* Fix bug #46748, segfault when SSL has more than one error message.Scott MacVicar2008-12-081-26/+14
|
* - mfb: fix titlePierre Joye2008-11-181-1/+1
|
* - MFB: #41033, enable signing with DSA keysPierre Joye2008-11-184-1/+56
|
* Add openssl_random_pseudo_bytes() in order to expose access to a PRG, this ↵Scott MacVicar2008-11-172-0/+75
| | | | | | | | | | wraps around whatever the OS provides. - OpenBSD uses arc4random() - Windows uses the Windows Crypto API - FreeBSD, Linux, etc use /dev/random or /dev/urandom if available [DOC]
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro (again!)Felipe Pena2008-11-171-42/+0
|
* - MFB: skip if pcntl is not presentPierre Joye2008-11-161-1/+2
|
* - #46127, php_openssl_tcp_sockop_accept forgets to set context on accepted ↵Pierre Joye2008-11-163-0/+91
| | | | stream
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+42
|
* MFB: Fixed compiler warningIlia Alshanetsky2008-10-261-2/+2
|
* - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-42/+0
|
* initialize optional varsArnaud Le Blanc2008-10-211-7/+7
|
* MFB: Fixed bug #46271 (local_cert option is not resolved to full path)Ilia Alshanetsky2008-10-141-19/+22
|
* initialize keyresourceRob Richards2008-09-301-1/+1
|
* Show the library version currently loaded as well as the version the ↵Scott MacVicar2008-09-181-1/+2
| | | | extension was compiled with. Useful for checking PHP is using the latest version.
* MFB: Fixed bug #45382 (timeout bug in stream_socket_enable_crypto).Ilia Alshanetsky2008-09-111-1/+1
|
* fix typoAntony Dovgal2008-08-051-1/+1
|
* fix foldingAntony Dovgal2008-07-301-18/+6
|
* Fix testsHenrique do Nascimento Angelo2008-07-197-23/+41
|
* New testsHenrique do Nascimento Angelo2008-07-1918-0/+1195
|
* Add unicode suport to ext/opensslHenrique do Nascimento Angelo2008-07-181-177/+404
|
* fix testAntony Dovgal2008-07-151-1/+1
|
* Fix error messageHenrique do Nascimento Angelo2008-07-153-1/+40
|
* Fix uninitilized variables in openssl_pkcs7_encrypt() and openssl_pkcs7_sign()Henrique do Nascimento Angelo2008-07-155-0/+186
|
* Fix segfault caused by openssl_pkey_new() in ext/openssl/tests/006.phptHenrique do Nascimento Angelo2008-07-152-12/+43
|
* manage references of stream context properlyAntony Dovgal2008-07-111-1/+3
|
* Fix a memory leak on openssl_decrypt()Henrique do Nascimento Angelo2008-06-281-4/+9
|
* MFB: fix arginfoHannes Magnusson2008-06-011-4/+4
|
* MFB: Add arginfo & fix protosHannes Magnusson2008-06-011-57/+347
|
* - Removed UEXPECT(F)Felipe Pena2008-05-276-109/+1
|