Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

1,636,005

Downloads of v 1.1.0.40000001:

3,162

Last Update:

06 May 2017

Package Maintainer(s):

Software Author(s):

  • Shining Light Productions

Tags:

openssl-light openssl ssl tls pfx pem key rsa admin foss cross-platform

OpenSSL – The Open Source SSL and TLS toolkit

This is not the latest version of OpenSSL – The Open Source SSL and TLS toolkit available.

  • 1
  • 2
  • 3

1.1.0.40000001 | Updated: 06 May 2017

Downloads:

1,636,005

Downloads of v 1.1.0.40000001:

3,162

Software Author(s):

  • Shining Light Productions

OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.40000001

This is not the latest version of OpenSSL – The Open Source SSL and TLS toolkit available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install OpenSSL – The Open Source SSL and TLS toolkit, run the following command from the command line or from PowerShell:

>

To upgrade OpenSSL – The Open Source SSL and TLS toolkit, run the following command from the command line or from PowerShell:

>

To uninstall OpenSSL – The Open Source SSL and TLS toolkit, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade openssl.light -y --source="'INTERNAL REPO URL'" --version="'1.1.0.40000001'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade openssl.light -y --source="'INTERNAL REPO URL'" --version="'1.1.0.40000001'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install openssl.light
  win_chocolatey:
    name: openssl.light
    version: '1.1.0.40000001'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'openssl.light' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.1.0.40000001'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller openssl.light
{
    Name     = "openssl.light"
    Version  = "1.1.0.40000001"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'openssl.light':
  ensure   => '1.1.0.40000001',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 06 May 2017.

Description

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 Win32 OpenSSL Installation Project is dedicated to providing a simple installation of OpenSSL. It is easy to set up and easy to use through the simple, effective installer. No need to compile anything or jump through any hoops, just click a few times and it is installed, leaving you to doing real work. Download it today! Note that these are default builds of OpenSSL and subject to local and state laws. More information can be found in the legal agreement of the installation.

Package Parameters

  • /InstallDir:- Installation directory, defaults to the 'Program Files\OpenSSL' directory.

legal\LICENSE.txt

  LICENSE ISSUES
  ==============

  The OpenSSL toolkit stays under a double license, i.e. both the conditions of
  the OpenSSL License and the original SSLeay license apply to the toolkit.
  See below for the actual license texts.

  OpenSSL License
  ---------------

/* ====================================================================
 * Copyright (c) 1998-2017 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    [email protected]
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * ([email protected]).  This product includes software written by Tim
 * Hudson ([email protected]).
 *
 */

 Original SSLeay License
 -----------------------

/* Copyright (C) 1995-1998 Eric Young ([email protected])
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young ([email protected]).
 * The implementation was written so as to conform with Netscapes SSL.
 * 
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson ([email protected]).
 * 
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young ([email protected])"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from 
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson ([email protected])"
 * 
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */

legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the listed download
location on <https://slproweb.com/products/Win32OpenSSL.html>
and can be verified by doing the following:

1. Download the following:
  32-Bit software: <https://slproweb.com/download/Win32OpenSSL_Light-1_1_0e.exe>
  64-Bit software: <https://slproweb.com/download/Win64OpenSSL_Light-1_1_0e.exe>
2. Get the checksum using one of the following methods:
  - Using powershell function 'Get-FileHash'
  - Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

  checksum type: sha256
  checksum32: B8C7754496D228CC52F63E5D4D98185C44DED85D2C10341202C7F493B5D7DED8
  checksum64: 539AE73F8A19B5A01199126782DC2B8D1720403B6C89EDB59E5D80077784F4B6

The file 'LICENSE.txt' has been obtained from <https://www.openssl.org/source/license.txt>
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop';

$toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$pp = Get-PackageParameters
$silentArgs = '/silent','/sp-','/suppressmsgboxes'
if ($pp.InstallDir) { $silentArgs += @("/DIR=`"$($pp.InstallDir)`"") }
else {
  $silentArgs += @("/DIR=`"$env:ProgramFiles\OpenSSL`"")
}

$packageArgs = @{
  packageName    = 'OpenSSL.Light'
  fileType       = 'exe'
  file           = "$toolsPath\Win32OpenSSL_Light-1_1_0e.exe"
  file64         = "$toolsPath\Win64OpenSSL_Light-1_1_0e.exe"
  softwareName   = 'OpenSSL*Light*'
  silentArgs     = $silentArgs
  validExitCodes = @(0)
}

Install-ChocolateyInstallPackage @packageArgs

Remove-Item -Force -ea 0 "$toolsPath\*.exe","$toolsPath\*.ignore"
tools\Win32OpenSSL_Light-1_1_0e.exe
md5: 8128CFCC71A918E28772D3687A379504 | sha1: 0E94795CB994A7A9663FB636CC64061C01807113 | sha256: B8C7754496D228CC52F63E5D4D98185C44DED85D2C10341202C7F493B5D7DED8 | sha512: B47C977EF332AB5446B4B9FECB0650A1992D196596D564976C7E0FD0E82653B1CFEF5423AAECA239198FF329A8D57D5E553EA8A79A6449ED029CF41C5AAB12FC
tools\Win64OpenSSL_Light-1_1_0e.exe
md5: 6EE7DB9949AECBF8EE81E582D7362A87 | sha1: 9D96387C224BC88BA5B8C23EFAC33EB5F5F7B427 | sha256: 539AE73F8A19B5A01199126782DC2B8D1720403B6C89EDB59E5D80077784F4B6 | sha512: FE9C43B609887F03FCC1CEF81B1887A2158D716A87C8116F1E037EC1C670F02C8E04BD2D39A93EE2B4E001A4C74F0A5066EFF155B7062FAF5932712112880B31

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
OpenSSL – The Open Source SSL and TLS toolkit 3.1.0 16073 Wednesday, March 15, 2023 Approved
OpenSSL – The Open Source SSL and TLS toolkit 3.0.8 7364 Thursday, February 9, 2023 Approved
OpenSSL – The Open Source SSL and TLS toolkit 3.0.7 73572 Wednesday, November 2, 2022 Approved
OpenSSL – The Open Source SSL and TLS toolkit 3.0.5 122449 Wednesday, July 6, 2022 Approved
OpenSSL – The Open Source SSL and TLS toolkit 3.0.4 6742 Wednesday, June 22, 2022 Approved
OpenSSL – The Open Source SSL and TLS toolkit 3.0.3 87630 Wednesday, May 4, 2022 Approved
OpenSSL – The Open Source SSL and TLS toolkit 3.0.2 49486 Wednesday, March 16, 2022 Approved
OpenSSL – The Open Source SSL and TLS toolkit 3.0.1 55550 Wednesday, December 15, 2021 Approved
OpenSSL – The Open Source SSL and TLS toolkit 3.0.0 92798 Thursday, September 9, 2021 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.1.20181020 831335 Saturday, October 20, 2018 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.1 40115 Friday, September 14, 2018 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.80000000 29711 Tuesday, August 14, 2018 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.70000000 80775 Tuesday, March 27, 2018 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.60000000 41180 Saturday, November 4, 2017 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.50000001 20279 Wednesday, June 28, 2017 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.50000000 6078 Friday, May 26, 2017 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.40000001 3162 Saturday, May 6, 2017 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.40000000 1570 Thursday, April 27, 2017 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.20170216 14136 Thursday, February 16, 2017 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.20170126 3468 Thursday, January 26, 2017 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.20161111 8942 Friday, November 11, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.20160926 6094 Monday, September 26, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0.20160923 662 Friday, September 23, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.1.0 3086 Saturday, August 27, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20160710 3509 Sunday, July 10, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20160504 480 Wednesday, May 4, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20160428 760 Thursday, April 28, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20160302 3184 Wednesday, March 2, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20160130 1792 Saturday, January 30, 2016 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20151205 3222 Saturday, December 5, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20151010 3683 Saturday, October 10, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20150710 3254 Friday, July 10, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20150704 576 Saturday, July 4, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20150627 582 Saturday, June 27, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20150613 804 Saturday, June 13, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20150612 449 Friday, June 12, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2.20150320 1588 Friday, March 20, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.2 940 Monday, March 2, 2015 Approved
OpenSSL – The Open Source SSL and TLS toolkit 1.0.1.20150209 682 Monday, February 9, 2015 Approved
OpenSSL - The Open Source SSL and TLS toolkit 1.0.1.20141015 987 Thursday, November 13, 2014 Approved
OpenSSL - The Open Source SSL and TLS toolkit 1.0.1.20140824 910 Sunday, August 24, 2014 Approved
OpenSSL - The Open Source SSL and TLS toolkit 1.0.1.20140411 826 Friday, April 11, 2014 Approved
OpenSSL - The Open Source SSL and TLS toolkit 1.0.1.20130603 970 Monday, June 3, 2013 Approved
OpenSSL - The Open Source SSL and TLS toolkit 1.0.1.20121127 614 Wednesday, November 28, 2012 Approved
OpenSSL - The Open Source SSL and TLS toolkit 1.0.1.3 887 Friday, October 12, 2012 Approved
Discussion for the OpenSSL – The Open Source SSL and TLS toolkit Package

Ground Rules:

  • This discussion is only about OpenSSL – The Open Source SSL and TLS toolkit and the OpenSSL – The Open Source SSL and TLS toolkit package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or OpenSSL – The Open Source SSL and TLS toolkit, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus