Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - Never use Z_TYPE* macros on non-zvals. | foobar | 2005-04-19 | 1 | -4/+4 | |
| | ||||||
* | Fixed possible usage of str without being initialized. | Ilia Alshanetsky | 2005-03-15 | 1 | -1/+3 | |
| | ||||||
* | - Fixed bug #18613 (Multiple OUs in x509 certificate not handled properly) | foobar | 2005-03-14 | 1 | -8/+33 | |
| | ||||||
* | Fix possible crash; patch by Kamesh Jayachandran | Wez Furlong | 2004-10-27 | 1 | -0/+1 | |
| | ||||||
* | Fix for Bug #29418 (double free when openssl_csr_new fails). | Wez Furlong | 2004-10-26 | 1 | -1/+7 | |
| | | | | | | | Also hook up MSHUTDOWN function which appears to have never been enabled. Patch by Kamesh Jayachandran | |||||
* | Add missing stream unregister for sslv2 and 3. | Magnus M��tt� | 2004-09-13 | 1 | -0/+2 | |
| | ||||||
* | Fix Bug #29296: add explicit sslv2 and sslv3 transports | Wez Furlong | 2004-09-10 | 1 | -0/+2 | |
| | ||||||
* | Fix bug #28096 - stream_socket_accept() on an SSL server socket doesn't | Wez Furlong | 2004-04-21 | 1 | -0/+7 | |
| | | | | | | | | | enable SSL on the accepted socket. - Add cipher list context option - Add helpful hint about why SSL server socket fails with mysterious error (eg: you need an SSL certificate for most ciphers). | |||||
* | Fixed compiler warnings. | Ilia Alshanetsky | 2004-03-29 | 1 | -1/+0 | |
| | ||||||
* | - A belated happy holidays and PHP 5 | Andi Gutmans | 2004-01-08 | 1 | -2/+2 | |
| | ||||||
* | Fixed uninitialized usage of mdtype when unknown signature algorithm is | Ilia Alshanetsky | 2003-12-21 | 1 | -4/+8 | |
| | | | | | found. | |||||
* | Port liveness and SSL CA validation from 4.3 branch. | Wez Furlong | 2003-11-27 | 1 | -0/+222 | |
| | | | | | Make stream_select() work on ssl-enabled sockets again. | |||||
* | Fix unintialized variable. | Wez Furlong | 2003-10-13 | 1 | -1/+1 | |
| | | | | | Patch by Joe Orton. | |||||
* | Fixed typo. | foobar | 2003-09-23 | 1 | -1/+1 | |
| | ||||||
* | MFB 25614 "fix" | Wez Furlong | 2003-09-23 | 1 | -4/+13 | |
| | ||||||
* | Fixed compiler warnings. | Ilia Alshanetsky | 2003-08-31 | 1 | -1/+1 | |
| | ||||||
* | Fix Win32 linkage problems | Zeev Suraski | 2003-08-31 | 1 | -0/+3 | |
| | ||||||
* | Use new infrastructure. | Zeev Suraski | 2003-08-03 | 1 | -14/+16 | |
| | | | | | There are bound to be some messups, please report build/runtime bugs! | |||||
* | Allow setting of the serial number. | Stefan Roehrich | 2003-07-13 | 1 | -4/+4 | |
| | ||||||
* | Fixed certificate version (counting begins with 0, so 2 means version 3). | Stefan Roehrich | 2003-07-13 | 1 | -1/+1 | |
| | ||||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -3/+3 | |
| | ||||||
* | MFB | Ilia Alshanetsky | 2003-06-08 | 1 | -6/+6 | |
| | ||||||
* | emalloc -> safe_emalloc | Ilia Alshanetsky | 2003-04-28 | 1 | -4/+4 | |
| | ||||||
* | Fix const warning | Wez Furlong | 2003-03-31 | 1 | -1/+1 | |
| | ||||||
* | - Typo and some whitespace | Derick Rethans | 2003-03-30 | 1 | -52/+53 | |
| | ||||||
* | - Added optional parameter to openssl_sign() to specify the hashing | Derick Rethans | 2003-03-30 | 1 | -2/+29 | |
| | | | | | | | algorithm to use. (Patch by Scott <scott@planetscott.ca>) @- Added optional parameter to openssl_sign() to specify the hashing @ algorithm to use. (scott@planetscott.ca, Derick) | |||||
* | fix proto | Wez Furlong | 2003-03-15 | 1 | -1/+1 | |
| | ||||||
* | 64-bit correction to variables passed to zend_parse_parameters | David Hill | 2003-03-06 | 1 | -27/+28 | |
| | | | | | @64-bit correction to variables passed to zend_parse_parameters (Dave) | |||||
* | Fixed compiler warnings. | Ilia Alshanetsky | 2003-02-28 | 1 | -3/+3 | |
| | ||||||
* | - Move https:// and ftps:// wrapper registration into the openssl module. | Wez Furlong | 2003-02-27 | 1 | -0/+7 | |
| | | | | | | - Expose the http:// and ftp:// wrappers as PHPAPI - Remove unused variables | |||||
* | Another big commit (tm). | Wez Furlong | 2003-02-27 | 1 | -0/+14 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Main Changes: - Implement a socket transport layer for use by all code that needs to open some kind of "special" socket for network or IPC. - Extensions can register (and override) transports. - Implement ftruncate() on streams via the ioctl-alike option interface. - Implement mmap() on streams via the ioctl-alike option interface. - Implement generic crypto API via the ioctl-alike option interface. (currently only supports OpenSSL, but could support other SSL toolkits, and other crypto transport protocols). Impact: - tcp sockets can be overloaded by the openssl capable sockets at runtime, removing the link-time requirement for ssl:// and https:// sockets and streams. - checking stream types using PHP_STREAM_IS_SOCKET is deprecated, since there are now a range of possible socket-type streams. Working towards: - socket servers using the new transport layer - mmap support under win32 - Cleaner code. # I will be updating the win32 build to add the new files shortly # after this commit. | |||||
* | Add additional optional parameter to openssl_pkcs7_encrypt to specify the | Wez Furlong | 2003-02-10 | 1 | -6/+46 | |
| | | | | | | | | | | | | | | | | | cipher. The cipher can be one of the constants listed below. Based on a patch from: stefan at cuba dot ionum dot ch OPENSSL_CIPHER_RC2_40, (the default) OPENSSL_CIPHER_RC2_128, OPENSSL_CIPHER_RC2_64, OPENSSL_CIPHER_DES, OPENSSL_CIPHER_3DES, proto bool openssl_pkcs7_encrypt(string infile, string outfile, mixed recipcerts, array headers [, long flags [, long cipher]]) | |||||
* | Fixed bug #21986 (openssl test failure). | Ilia Alshanetsky | 2003-01-31 | 1 | -14/+9 | |
| | ||||||
* | Removed pointless memory allocation checks. | Ilia Alshanetsky | 2003-01-18 | 1 | -6/+1 | |
| | ||||||
* | CS fixes. | Ilia Alshanetsky | 2003-01-04 | 1 | -375/+377 | |
| | ||||||
* | Fixed a small memory leak when a NULL variable is passed to | Ilia Alshanetsky | 2003-01-02 | 1 | -1/+2 | |
| | | | | | openssl_csr_sign() as the first argument. | |||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 | |
| | ||||||
* | MFB: ZTS fix by Ilia | Marcus Boerger | 2002-12-13 | 1 | -1/+1 | |
| | ||||||
* | php_error -> php_error_docref conversion fix (noticed by derick) | Marcus Boerger | 2002-12-12 | 1 | -1/+1 | |
| | ||||||
* | Patch for #20936 (openssl: public key handling was broken). | Wez Furlong | 2002-12-12 | 1 | -0/+67 | |
| | | | | | Thanks to <jeroen@derks.it> for the patch. | |||||
* | typeconversion is needed here for cygwin | Marcus Boerger | 2002-12-12 | 1 | -1/+1 | |
| | ||||||
* | ZTS fix. | Ilia Alshanetsky | 2002-12-11 | 1 | -2/+2 | |
| | ||||||
* | Fix ZTS build | Ilia Alshanetsky | 2002-12-11 | 1 | -0/+5 | |
| | ||||||
* | use php_error_docref and tidy up some WS/coding standards. | Wez Furlong | 2002-12-10 | 1 | -201/+194 | |
| | ||||||
* | Fixed bug #19935. Made OpenSSL file system operations abide by safe_mode | Ilia Alshanetsky | 2002-11-10 | 1 | -6/+70 | |
| | | | | | & open_basedir restrictions. | |||||
* | correct proto | Wez Furlong | 2002-08-10 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug: #18295. e_os.h is not supposed to be included.. | foobar | 2002-07-12 | 1 | -3/+4 | |
| | ||||||
* | Fixed bug: #17751 (typo) | foobar | 2002-06-13 | 1 | -1/+1 | |
| | ||||||
* | proto tweak | Wez Furlong | 2002-05-17 | 1 | -1/+1 | |
| | ||||||
* | Fix for #16885 | Wez Furlong | 2002-05-01 | 1 | -0/+2 | |
| |