Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed bug #50859 (build fails with openssl 1.0 due to md2 deprecation) | Ilia Alshanetsky | 2010-01-27 | 1 | -1/+7 |
| | |||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 3 | -3/+3 |
| | |||||
* | added timezone define for NetWare. | Guenter Knauf | 2009-11-03 | 1 | -0/+4 |
| | |||||
* | - Fixed memory leak in openssl_pkcs12_export_to_file() | Felipe Pena | 2009-10-27 | 1 | -2/+3 |
| | |||||
* | TSRMLS | Arnaud Le Blanc | 2009-10-22 | 1 | -3/+2 |
| | |||||
* | fix ZTS build | Antony Dovgal | 2009-10-22 | 1 | -0/+1 |
| | |||||
* | Added client-side Server Name Indication (SNI) support in OpenSSL extension. | Arnaud Le Blanc | 2009-10-21 | 3 | -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 Stogov | 2009-09-22 | 1 | -3/+3 |
| | |||||
* | Fixed certificate validation inside php_openssl_apply_verification_policy | Ilia Alshanetsky | 2009-09-14 | 1 | -5/+9 |
| | |||||
* | - Fixed bug #49447 (php engine need to correctly check for socket API | Sriram Natarajan | 2009-09-04 | 1 | -0/+4 |
| | | | | | return status on windows). (Sriram Natarajan) | ||||
* | Fixes a memory leak in ssl streams. The context was not properly freed | Mikko Koppanen | 2009-08-22 | 1 | -6/+14 |
| | |||||
* | - Fixed compile failure with older openssl libs (< 0.9.8), fixes bug #49012 | Jani Taskinen | 2009-07-30 | 1 | -0/+4 |
| | |||||
* | - 48182 ssl handshake fails during asynchronous socket connection | Sriram Natarajan | 2009-07-28 | 2 | -1/+97 |
| | |||||
* | - #48116, fix build with openssl 1.0 | Pierre Joye | 2009-07-06 | 1 | -6/+13 |
| | |||||
* | Closes #47991 SSL streams fail if error stack contains items | Mikko Koppanen | 2009-04-20 | 1 | -0/+1 |
| | |||||
* | I wish people would test their changes before comitting, especially since ↵ | Scott MacVicar | 2009-03-30 | 1 | -1/+1 |
| | | | | the test is *IDENTICAL* as before just with different formatting. | ||||
* | - MFB: better test case, it crashes on more architecture | Pierre Joye | 2009-03-30 | 1 | -3/+28 |
| | |||||
* | Add test for bug #47828 | Scott MacVicar | 2009-03-30 | 1 | -0/+15 |
| | |||||
* | Fix bug #47828 - Converting to UTF-8 can sometimes fail, check error codes ↵ | Scott MacVicar | 2009-03-29 | 1 | -2/+4 |
| | | | | and avoid segfault. | ||||
* | - This is PHP 6 - if this ... ever gets out | Marcus Boerger | 2009-03-10 | 3 | -3/+3 |
| | |||||
* | Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 3 | -3/+3 |
| | |||||
* | Fix bug #46748, segfault when SSL has more than one error message. | Scott MacVicar | 2008-12-08 | 1 | -26/+14 |
| | |||||
* | - mfb: fix title | Pierre Joye | 2008-11-18 | 1 | -1/+1 |
| | |||||
* | - MFB: #41033, enable signing with DSA keys | Pierre Joye | 2008-11-18 | 4 | -1/+56 |
| | |||||
* | Add openssl_random_pseudo_bytes() in order to expose access to a PRG, this ↵ | Scott MacVicar | 2008-11-17 | 2 | -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 Pena | 2008-11-17 | 1 | -42/+0 |
| | |||||
* | - MFB: skip if pcntl is not present | Pierre Joye | 2008-11-16 | 1 | -1/+2 |
| | |||||
* | - #46127, php_openssl_tcp_sockop_accept forgets to set context on accepted ↵ | Pierre Joye | 2008-11-16 | 3 | -0/+91 |
| | | | | stream | ||||
* | - Revert ZEND_BEGIN_ARG_INFO change | Felipe Pena | 2008-11-02 | 1 | -0/+42 |
| | |||||
* | MFB: Fixed compiler warning | Ilia Alshanetsky | 2008-10-26 | 1 | -2/+2 |
| | |||||
* | - Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-10-24 | 1 | -42/+0 |
| | |||||
* | initialize optional vars | Arnaud Le Blanc | 2008-10-21 | 1 | -7/+7 |
| | |||||
* | MFB: Fixed bug #46271 (local_cert option is not resolved to full path) | Ilia Alshanetsky | 2008-10-14 | 1 | -19/+22 |
| | |||||
* | initialize keyresource | Rob Richards | 2008-09-30 | 1 | -1/+1 |
| | |||||
* | Show the library version currently loaded as well as the version the ↵ | Scott MacVicar | 2008-09-18 | 1 | -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 Alshanetsky | 2008-09-11 | 1 | -1/+1 |
| | |||||
* | fix typo | Antony Dovgal | 2008-08-05 | 1 | -1/+1 |
| | |||||
* | fix folding | Antony Dovgal | 2008-07-30 | 1 | -18/+6 |
| | |||||
* | Fix tests | Henrique do Nascimento Angelo | 2008-07-19 | 7 | -23/+41 |
| | |||||
* | New tests | Henrique do Nascimento Angelo | 2008-07-19 | 18 | -0/+1195 |
| | |||||
* | Add unicode suport to ext/openssl | Henrique do Nascimento Angelo | 2008-07-18 | 1 | -177/+404 |
| | |||||
* | fix test | Antony Dovgal | 2008-07-15 | 1 | -1/+1 |
| | |||||
* | Fix error message | Henrique do Nascimento Angelo | 2008-07-15 | 3 | -1/+40 |
| | |||||
* | Fix uninitilized variables in openssl_pkcs7_encrypt() and openssl_pkcs7_sign() | Henrique do Nascimento Angelo | 2008-07-15 | 5 | -0/+186 |
| | |||||
* | Fix segfault caused by openssl_pkey_new() in ext/openssl/tests/006.phpt | Henrique do Nascimento Angelo | 2008-07-15 | 2 | -12/+43 |
| | |||||
* | manage references of stream context properly | Antony Dovgal | 2008-07-11 | 1 | -1/+3 |
| | |||||
* | Fix a memory leak on openssl_decrypt() | Henrique do Nascimento Angelo | 2008-06-28 | 1 | -4/+9 |
| | |||||
* | MFB: fix arginfo | Hannes Magnusson | 2008-06-01 | 1 | -4/+4 |
| | |||||
* | MFB: Add arginfo & fix protos | Hannes Magnusson | 2008-06-01 | 1 | -57/+347 |
| | |||||
* | - Removed UEXPECT(F) | Felipe Pena | 2008-05-27 | 6 | -109/+1 |
| |