Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
| | |||||
* | Refactor + reorganize openssl files | Daniel Lowrey | 2014-03-05 | 1 | -2/+10 |
| | | | | | | | | | - All streams-related code now lives in xp_ssl.c. Previously stream code was split across both openssl.c and xp_ssl.c - Folded superfluous php_openssl_structs.h into xp_ssl.c - Server-specific options now set on SSL_CTX instead of SSL - Deprecate SNI_server_name ctx option - Miscellaneous refactoring | ||||
* | Mitigate client-initiated SSL renegotiation DoS | Daniel Lowrey | 2014-02-21 | 1 | -0/+4 |
| | |||||
* | Add openssl_get_cert_locations() function | Daniel Lowrey | 2014-02-20 | 1 | -0/+2 |
| | |||||
* | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | Renamed to be more descriptive of what it does | Tjerk Meesters | 2013-09-23 | 1 | -1/+1 |
| | |||||
* | added openssl_x509_digest(), output is binary sha1 | datibbaw | 2013-09-20 | 1 | -0/+1 |
| | |||||
* | Address feature request #38917 for native SPKAC (HTML5 keygen element) support | jas- | 2013-05-06 | 1 | -0/+5 |
| | |||||
* | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 |
| | |||||
* | Rename openssl_pkcs5_pbkdf2_hmac() to something that doesn't sound like a spell. | Scott MacVicar | 2012-06-11 | 1 | -1/+1 |
| | | | | | Summary: Stas pointed out that this is named pretty poorly. Go for openssl_pbkdf2() | ||||
* | Add PBKDF2 support via openssl() | Scott MacVicar | 2012-06-11 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | Summary: No easy way to put these in the hash extension since we don't really support optional parameters to certain algorithms. Implemented in openssl for now since it has it already and is pretty stable. Only SHA1 is confirmed to work as an algorithm but openssl has a parameter so it can be changed in the future. Will backport to 5.4 potentially with Stas' approval. Test Plan: Ran newly added tests which came from RFC 6070 | ||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | |||||
* | Allow management of your own padding in openssl_encrypt/decrypt. | Scott MacVicar | 2011-05-20 | 1 | -0/+3 |
| | | | | | | For using mcrypt / openssl interchangeabley managing your own padding is the only solution. | ||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | - implement #39867, PKCS#12 support | Pierre Joye | 2007-04-04 | 1 | -0/+5 |
| | | | | | | - Fix possible multibyte issues issue in the add_assoc function - add test for openssl_csr_get_subject | ||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | - add openssl_csr_get_subject() and openssl_csr_get_public_key() | Pierre Joye | 2006-08-15 | 1 | -1/+2 |
| | |||||
* | - add OPENSSL_KEYTYPE_EC constant | Pierre Joye | 2006-08-15 | 1 | -0/+1 |
| | | | | | - openssl_pkey_get_details(), returns the key details | ||||
* | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 |
| | |||||
* | - Bumber up year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -2/+2 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | - HAVE_OPENSSL_EXT is not defined always. | foobar | 2003-06-27 | 1 | -1/+1 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -3/+3 |
| | |||||
* | Another big commit (tm). | Wez Furlong | 2003-02-27 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | Revise the xxx_export api so that exporting to files is comfortable. | Wez Furlong | 2001-09-11 | 1 | -0/+3 |
| | |||||
* | Arrrgghh! | Wez Furlong | 2001-09-11 | 1 | -5/+16 |
| | | | | | | Fix munched file. # Dunno how that happened. | ||||
* | Merged and adapted a patch from Sascha Kettler <kettler@gmx.net> that provides | Wez Furlong | 2001-05-04 | 1 | -0/+4 |
| | | | | | some asymmetric RSA encrypt/decrypt functions. | ||||
* | Added whole bunch of PKCS7 (S/MIME) functions and made the key/cert params | Wez Furlong | 2001-04-01 | 1 | -5/+11 |
| | | | | | a bit more friendly to use. See the README for more info. | ||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | Renamed openssl_read_privatekey openssl_get_privatekey, and some minor | Stig Venaas | 2000-11-17 | 1 | -1/+2 |
| | | | | | fixes including init and shutdown functions | ||||
* | extname -> openssl | foobar | 2000-11-16 | 1 | -1/+1 |
| | |||||
* | Made API simpler | Stig Venaas | 2000-11-14 | 1 | -1/+4 |
| | |||||
* | OpenSSL extension. So far it implements assymetric encryption functions. | Stig Venaas | 2000-11-13 | 1 | -0/+53 |