2015-05-27 23:38:01 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.015:
2.014 2015/05/13
- work around problem with IO::Socket::INET6 on windows, by explicitly using
Domain AF_INET in the tests.
Fixes RT#104226 reported by CHORNY
|
2015-05-06 09:45:15 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.014:
2.014 2015/05/05
- Utils::CERT_create - work around problems with authorityInfoAccess, where
OpenSSL i2v does not create the same string as v2i expects
- Intercept - don't clone some specific extensions which make only sense with
the original certificate
|
2015-05-03 11:58:01 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.013:
2.013 2015/05/01
- assign severities to internal error handling and make sure that follow-up
errors like "configuration failed" or "certificate verify \
error" don't
replace more specific "hostname verification failed" when reporting in
sub errstr/$SSL_ERROR. see also RT#103423
- enhanced documentation thanks to Chase Whitener
https://github.com/noxxi/p5-io-socket-ssl/pull/26
|
2015-02-04 13:19:07 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.012. Depend on p5-Mozilla-CA.
2.012 2014/02/02
- fix t/ocsp.t in case no HTTP::Tiny is installed
2.011 2014/02/01
- fix t/ocsp.t - don't count on revoked.grc.com using OCSP stapling #101855
- added option 'purpose' to Utils::CERT_create to get better control of the
certificates purpose. Default is 'server,client' for non-CA (contrary to
only 'server' before)
- removed RC4 from default cipher suites on the server site
https://github.com/noxxi/p5-io-socket-ssl/issues/22
- refactoring of some tests using Test::More thanks to Sweet-kid and the
2015 Pull Request Challenge
|
2015-01-23 07:22:20 by OBATA Akio | Files touched by this commit (1) |
Log message:
simplify MASTER_SITES subdirectory.
|
2015-01-18 19:58:17 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.010:
2.010 2014/01/14
- new options SSL_client_ca_file and SSL_client_ca to let the server send
the list of acceptable CAs for the client certificate.
- t/protocol_version.t - fix in case SSLv3 is not supported in Net::SSLeay.
RT#101485, thanks to TEAM.
|
2015-01-14 14:23:10 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.009:
2.009 2014/01/12
- remove util/analyze.pl. This tool is now together with other SSL tools in
https://github.com/noxxi/p5-ssl-tools
- added ALPN support (needs OpenSSL1.02, Net::SSLeay 1.56+) thanks to TEAM,
RT#101452
|
2014-12-30 13:56:13 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.008:
2.008 2014/12/16
- work around recent OCSP verification errors for revoked.grc.com (badly signed
OCSP response, Firefox also complains about it) in test t/external/ocsp.t.
- util/analyze.pl - report more details about preferred cipher for specific TLS
versions
|
2014-11-30 14:16:11 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 2.007:
2.007 2014/11/26
- make getline/readline fall back to super class if class is not sslified yet,
i.e. behave the same as sysread, syswrite etc.
This fixes RT#100529
|
2014-11-23 14:06:40 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
Update to 2.006:
2.006 2014/11/22
- Make (hopefully) non-blocking work on windows by using EWOULDBLOCK instead of
EAGAIN. While this is the same on UNIX it is different on Windows and socket
operations return there (WSA)EWOULDBLOCK and not EAGAIN. Enable non-blocking
tests on Windows too.
- make PublicSuffix::_default_data thread safe
- update PublicSuffix with latest list from publicsuffix.org
|