chore(OpenSSL.light): release 1.0.1e

This commit is contained in:
Iristyle
2013-06-03 08:13:08 -04:00
parent 6ba4499132
commit d2197ce80d
2 changed files with 15 additions and 6 deletions

View File

@@ -3,11 +3,11 @@
<metadata> <metadata>
<id>OpenSSL.Light</id> <id>OpenSSL.Light</id>
<title>OpenSSL - The Open Source SSL and TLS toolkit</title> <title>OpenSSL - The Open Source SSL and TLS toolkit</title>
<version>1.0.1.20121127</version> <version>1.0.1.20130603</version>
<authors>Shining Light Productions</authors> <authors>Shining Light Productions</authors>
<owners>Ethan Brown</owners> <owners>Ethan Brown</owners>
<summary>Open Source SSL v2/v3 and TLS v1 toolkit</summary> <summary>Open Source SSL v2/v3 and TLS v1 toolkit</summary>
<description>This is really 1.0.1c, but the Nuget spec doesn't allow such version identifiers, so the file versions are used. <description>This is really 1.0.1e, but the Nuget spec doesn't allow such version identifiers, so the file versions are used.
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. The project is managed by a worldwide community of volunteers that use the Internet to communicate, plan, and develop the OpenSSL toolkit and its related documentation. The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. The project is managed by a worldwide community of volunteers that use the Internet to communicate, plan, and develop the OpenSSL toolkit and its related documentation.
@@ -18,7 +18,16 @@
<licenseUrl>http://www.openssl.org/source/license.html</licenseUrl> <licenseUrl>http://www.openssl.org/source/license.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://github.com/Iristyle/ChocolateyPackages/raw/master/OpenSSL.Light/OpenSSL.Light.png</iconUrl> <iconUrl>https://github.com/Iristyle/ChocolateyPackages/raw/master/OpenSSL.Light/OpenSSL.Light.png</iconUrl>
<releaseNotes>Changes between 1.0.1b and 1.0.1c [10 May 2012] <releaseNotes>Changes between 1.0.1c and 1.0.1d [xx XXX xxxx]
*) Fix possible deadlock when decoding public keys.
[Steve Henson]
*) Don't use TLS 1.0 record version number in initial client hello
if renegotiating.
[Steve Henson]
Changes between 1.0.1b and 1.0.1c [10 May 2012]
*) Sanity check record length before skipping explicit IV in TLS *) Sanity check record length before skipping explicit IV in TLS
1.2, 1.1 and DTLS to avoid DoS attack. 1.2, 1.1 and DTLS to avoid DoS attack.

View File

@@ -11,15 +11,15 @@ try {
#InnoSetup - http://unattended.sourceforge.net/InnoSetup_Switches_ExitCodes.html #InnoSetup - http://unattended.sourceforge.net/InnoSetup_Switches_ExitCodes.html
silentArgs = '/silent', '/verysilent', '/sp-', '/suppressmsgboxes', silentArgs = '/silent', '/verysilent', '/sp-', '/suppressmsgboxes',
"/DIR=`"$installDir`""; "/DIR=`"$installDir`"";
url = 'http://slproweb.com/download/Win32OpenSSL_Light-1_0_1c.exe' url = 'http://slproweb.com/download/Win32OpenSSL_Light-1_0_1e.exe'
url64bit = 'http://slproweb.com/download/Win64OpenSSL_Light-1_0_1c.exe' url64bit = 'http://slproweb.com/download/Win64OpenSSL_Light-1_0_1e.exe'
} }
Install-ChocolateyPackage @params Install-ChocolateyPackage @params
if (!$Env:OPENSSL_CONF) if (!$Env:OPENSSL_CONF)
{ {
$configPath = Join-Path $Env:ProgramFiles 'OpenSSL\bin\openssl.cfg' $configPath = Join-Path $installDir 'bin\openssl.cfg'
if (Test-Path $configPath) if (Test-Path $configPath)
{ {