<?xml version="1.0" encoding="utf-8"?> 
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <generator uri="https://gohugo.io/" version="0.145.0">Hugo</generator><title type="html"><![CDATA[OpenSSL Library]]></title>
    <link href="https://openssl-library.org/" rel="alternate" type="text/html" title="html" /><link href="https://openssl-library.org/index.xml" rel="alternate" type="application/rss+xml" title="rss" /><link href="https://openssl-library.org/atom.xml" rel="self" type="application/atom+xml" title="atom" />
    <updated>2026-06-23T17:44:08+00:00</updated>
    <id>https://openssl-library.org/</id>
        
        <entry>
            <title type="html"><![CDATA[The OpenSSL Library AI Policy]]></title>
            <link href="https://openssl-library.org/post/2026-06-18-ai-policy/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-06-18-ai-policy/</id>
            
            
            <published>2026-06-18T00:00:00+00:00</published>
            <updated>2026-06-18T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Library has adopted <a href="/policies/general/ai-policy/">an AI
policy</a>. To summarize:</p>
<ul>
<li>Anyone who uses AI to provide a <em>non-trivial portion</em> of their
contributions to the OpenSSL Library must:
<ol>
<li>Sign an updated <a href="/policies/cla/">Contributor License Agreement
(CLA)</a> that includes
<em>the AI clauses</em>.</li>
<li>Declare any AI use in <em>the commit message</em> of each
contribution. This is done via an <code>Assisted-by</code> trailer as
explained in <a href="/policies/general/ai-policy/">the policy</a>.</li>
</ol>
</li>
<li>People who do not use AI, who have already signed the old CLA, do
not need to sign a new CLA.</li>
</ul>
<p><a href="/policies/general/ai-policy/">The policy</a>
goes into greater detail about what constitutes &ldquo;non-trivial&rdquo;
contributions and how to properly declare AI use.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Future release schedule]]></title>
            <link href="https://openssl-library.org/post/2026-05-07-future-release/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-05-07-future-release/</id>
            
            
            <published>2026-05-07T00:00:00+00:00</published>
            <updated>2026-05-07T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>At ICMC26, Tim Hudson <a href="https://openssl-corporation.org/post/2026-04-21-icmc26-day-1/">announced a
change</a>
to the OpenSSL Library release schedule for future releases. Last year
we <a href="/post/2025-02-20-openssl-3.5-lts/">committed</a> to making long term
stable (LTS) releases every two years. Following the <a href="/post/2026-04-14-openssl-40-final-release/">release of
4.0</a>, the first major
release since 2018, we now commit to a major release every two years.</p>
<p><img src="/images/release_plan_2026.svg" alt="OpenSSL release plan for 2026."></p>
<p>So the next LTS will be 4.2 in April 2027 and then we&rsquo;ll have a major
release, 5.0, in October 2027. That means the final 4.x release will
be supported for the entire 5.x release cycle. This gives significant
flexibility for projects that depend on OpenSSL to decide the
appropriate moment to move to a more recent version of the library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 4.0 Final Release - Live]]></title>
            <link href="https://openssl-library.org/post/2026-04-14-openssl-40-final-release/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-04-14-openssl-40-final-release/</id>
            
            <author>
                        <name>Tomas Vavra</name>
                    </author>
            <published>2026-04-14T00:00:00+00:00</published>
            <updated>2026-04-14T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The final release of OpenSSL 4.0 is now live. We would like to thank all those who contributed to the OpenSSL 4.0 release,
without whom the OpenSSL Library would not be possible.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[ASN1_STRING type is now opaque]]></title>
            <link href="https://openssl-library.org/post/2026-04-13-asn1_string/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-04-13-asn1_string/</id>
            
            
            <published>2026-04-13T00:00:00+00:00</published>
            <updated>2026-04-13T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Previous posts about the upcoming OpenSSL 4.0 release:</p>
<ol>
<li><a href="/post/2025-12-18-remove-engines">removing ENGINE code</a></li>
<li><a href="/post/2026-02-03-remove-methods">removing deprecated functions for creating or modifying custom METHODS</a></li>
<li><a href="/post/2026-03-10-remove-atexit">no longer registering a function via atexit function</a></li>
<li><a href="/post/2026-03-11-ech">adding ECH support</a></li>
<li><a href="/post/2026-04-07-ssl3">removing SSLv3 and SSLv2 Client Hello</a></li>
</ol>
<h2 id="summary">Summary</h2>
<p>The ASN1_STRING structure can <a href="https://docs.openssl.org/4.0/man7/ossl-guide-migration/#the-asn1_string-type-is-now-opaque">no longer be accessed
directly</a>. Instead,
accessor functions must be used.</p>
<p>While these accessor functions have been available since OpenSSL
1.0.1, this change is being made now to enable future work improving
X509 memory efficiency. Requiring accessor functions will allow ASN1
strings to be stored as pointers to data in read only memory instead
of making duplicate copies.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Release Announcement for 3.6.2, 3.5.6, 3.4.5, 3.3.7, 3.0.20, 1.1.1zg and 1.0.2zp]]></title>
            <link href="https://openssl-library.org/post/2026-04-07-release-announcement/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-04-07-release-announcement/</id>
            
            
            <published>2026-04-07T00:00:00+00:00</published>
            <updated>2026-04-07T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Release Announcement for OpenSSL Library <strong>3.6.2</strong>, <strong>3.5.6</strong>, <strong>3.4.5</strong>, <strong>3.3.7</strong>, <strong>3.0.20</strong>, <strong>1.1.1zg</strong> and <strong>1.0.2zp</strong></p>
<p>The OpenSSL Project team announces the release of new versions of our open-source toolkit for SSL/TLS.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[The OpenSSL Library no longer includes SSLv3]]></title>
            <link href="https://openssl-library.org/post/2026-04-07-ssl3/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-04-07-ssl3/</id>
            
            
            <published>2026-04-07T00:00:00+00:00</published>
            <updated>2026-04-07T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Previous posts about the upcoming OpenSSL 4.0 release:</p>
<ol>
<li><a href="/post/2025-12-18-remove-engines">removing ENGINE code</a></li>
<li><a href="/post/2026-02-03-remove-methods">removing deprecated functions for creating or modifying custom METHODS</a></li>
<li><a href="/post/2026-03-10-remove-atexit">no longer registering a function via atexit function</a></li>
<li><a href="/post/2026-03-11-ech">adding ECH support</a></li>
</ol>
<h2 id="summary">Summary</h2>
<p>Secure Sockets Layer version 3.0 (SSLv3) was deprecated in <a href="https://www.rfc-editor.org/rfc/rfc7568">RFC
7568</a>. SSLv3 was disabled at
build-time in OpenSSL 1.0.2h by default. As of OpenSSL 4.0, SSLv3 support
has been removed altogether.</p>
<p>In addition, OpenSSL no longer supports the SSLv2 Client Hello.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 4.0 Beta Release Announcement]]></title>
            <link href="https://openssl-library.org/post/2026-03-24-openssl-4.0-beta/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-03-24-openssl-4.0-beta/</id>
            
            
            <published>2026-03-24T00:00:00+00:00</published>
            <updated>2026-03-24T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The <a href="https://openssl.org">OpenSSL Project</a> is pleased to announce that <a href="https://github.com/openssl/openssl/releases/tag/openssl-4.0.0-beta1">OpenSSL 4.0 Beta1</a>
pre-release is available, adding significant functionality to the OpenSSL Library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL release signing key expiration extended]]></title>
            <link href="https://openssl-library.org/post/2026-03-16-release-signing-key-validity/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-03-16-release-signing-key-validity/</id>
            
            
            <published>2026-03-16T00:00:00+00:00</published>
            <updated>2026-03-16T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The expiration date of the OpenSSL release signing key with fingerprint
<code>BA5473A2B0587B07FB27CF2D216094DFD0CB81EF</code> has been extended from <code>08 Apr 2026</code> to <code>14 Jun 2026</code>.</p>
<p>Only the key expiration date has changed. The signing key itself remains the same.</p>
<p>The updated public key is available at:
<a href="https://keys.openpgp.org/search?q=BA5473A2B0587B07FB27CF2D216094DFD0CB81EF">https://keys.openpgp.org/search?q=BA5473A2B0587B07FB27CF2D216094DFD0CB81EF</a></p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[The OpenSSL Library now supports Encrypted Client Hello (ECH)]]></title>
            <link href="https://openssl-library.org/post/2026-03-11-ech/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-03-11-ech/</id>
            
            
            <published>2026-03-11T00:00:00+00:00</published>
            <updated>2026-03-11T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Previous posts about the upcoming OpenSSL 4.0 release:</p>
<ol>
<li><a href="/post/2025-12-18-remove-engines">removing ENGINE code</a></li>
<li><a href="/post/2026-02-03-remove-methods">removing deprecated functions for creating or modifying custom METHODS</a></li>
<li><a href="/post/2026-03-10-remove-atexit">no longer registering a function via atexit function</a></li>
</ol>
<h2 id="summary">Summary</h2>
<p>The OpenSSL Library now supports Encrypted Client Hello (ECH)
specified in <a href="https://www.rfc-editor.org/rfc/rfc9849.txt">RFC 9849</a>,
which was published this month. Applications that implement this
standard will be able to encrypt sensitive information that is
currently transmitted in plaintext in the TLS 1.3 handshake. In
particular, ECH can protect the client&rsquo;s target server name from being
revealed to third parties.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[The OpenSSL Library no longer registers an atexit function]]></title>
            <link href="https://openssl-library.org/post/2026-03-10-remove-atexit/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-03-10-remove-atexit/</id>
            
            
            <published>2026-03-10T00:00:00+00:00</published>
            <updated>2026-03-10T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Previous posts about features removed from OpenSSL 4.0:</p>
<ol>
<li><a href="/post/2025-12-18-remove-engines">ENGINE code</a></li>
<li><a href="/post/2026-02-03-remove-methods/">deprecated functions for creating or modifying custom METHODS</a></li>
</ol>
<h2 id="summary">Summary</h2>
<p>The <code>OPENSSL_cleanup()</code> function is no longer registered to be called
upon the termination of the process. This means the OpenSSL Library
does not automatically free resources so the operating system reclaims
them when an application exits.</p>
<p>For most users, this will have no impact since the memory is freed one
way or the other.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 4.0 Alpha Repository Freeze Approaching]]></title>
            <link href="https://openssl-library.org/post/2026-02-18-alpha-freeze-approaching/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-02-18-alpha-freeze-approaching/</id>
            
            
            <published>2026-02-18T00:00:00+00:00</published>
            <updated>2026-02-18T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Project is announcing the upcoming release of OpenSSL 4.0 Alpha,
scheduled for March 10, 2026. As a result, the repository will be frozen before the release on <em><strong>February 24, 2026</strong></em>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Custom method functions removed from the OpenSSL Library]]></title>
            <link href="https://openssl-library.org/post/2026-02-03-remove-methods/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-02-03-remove-methods/</id>
            
            
            <published>2026-02-03T00:00:00+00:00</published>
            <updated>2026-02-03T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Following on from the <a href="/post/2025-12-18-remove-engines">removal of ENGINE
code</a>, deprecated <a href="https://docs.openssl.org/master/man7/ossl-guide-migration/#engines-and-method-apis">functions for
creating or modifying custom
METHODS</a>
will be removed from OpenSSL 4.0.</p>
<h2 id="summary">Summary</h2>
<p>For a complete list of deprecated functions removed in OpenSSL 4.0,
please see the
<a href="https://docs.openssl.org/master/man7/ossl-removed-api/#openssl-40">ossl-removed-api</a>
documentation. They are divided into the following pull requests:</p>
<ul>
<li>Custom ciphers methods (<code>EVP_CIPHER_meth_*</code>) were removed in <a href="https://github.com/openssl/openssl/pull/29299">PR
#29299</a>.</li>
<li>Custom message digest methods (<code>EVP_MD_meth_*</code>) were removed in <a href="https://github.com/openssl/openssl/pull/29366">PR
#29366</a>.</li>
<li>Custom private key methods (<code>EVP_PKEY_meth_*</code>) were removed in <a href="https://github.com/openssl/openssl/pull/29384">PR
#29384</a>.</li>
<li>Custom private key <a href="https://en.wikipedia.org/wiki/ASN.1">Abstract Syntax Notation
One</a> methods
(<code>EVP_PKEY_asn1_*</code>) were removed in <a href="https://github.com/openssl/openssl/pull/29405">PR
#29405</a>. (These
functions were deprecated in OpenSSL 3.6.)</li>
</ul>
<p>Instead of using these methods, developers are encouraged to use the
<a href="https://docs.openssl.org/master/man7/provider/">provider framework</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Release Announcement for 3.6.1, 3.5.5, 3.4.4, 3.3.6, 3.0.19, 1.1.1ze and 1.0.2zn]]></title>
            <link href="https://openssl-library.org/post/2026-01-27-release-announcement/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2026-01-27-release-announcement/</id>
            
            
            <published>2026-01-27T00:00:00+00:00</published>
            <updated>2026-01-27T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Release Announcement for OpenSSL Library <strong>3.6.1</strong>, <strong>3.5 5</strong>, <strong>3.4.4</strong>, <strong>3.3.6</strong>, <strong>3.0.19</strong>, <strong>1.1.1ze</strong> and <strong>1.0.2zn</strong></p>
<p>The OpenSSL Project team announces the release of new versions of our open-source toolkit for SSL/TLS.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[ENGINE code removed from the OpenSSL Library]]></title>
            <link href="https://openssl-library.org/post/2025-12-18-remove-engines/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-12-18-remove-engines/</id>
            
            
            <published>2025-12-18T00:00:00+00:00</published>
            <updated>2025-12-18T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL 4.0, to be released in April 2026, is the first <a href="/policies/releasestrat/index.html">major
release</a> since 3.0 which <a href="/post/2019-02-13-fips-update/">replaced
the ENGINE interface with
<em>Providers</em></a>. Removing ENGINEs is a
primary goal of this major release and this post describes the change
agreed to by both the OpenSSL Corporation and OpenSSL Foundation.</p>
<h2 id="summary">Summary</h2>
<p>All symbols defined in <code>openssl/engine.h</code> have been removed from the
<a href="https://en.wikipedia.org/wiki/Shared_library">shared library</a> in
OpenSSL 4.0. Applications that use the ENGINE API will fail to compile
using the default build settings. This behavior matches what happens
in previous versions when building OpenSSL with the <a href="https://github.com/openssl/openssl/blob/master/INSTALL.md#no-engine"><code>no-engine</code>
configuration
option</a>
with current versions. Up-to-date applications should not include
<code>openssl/engine.h</code> at all.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Vote now for the Foundation Business Advisory Committee]]></title>
            <link href="https://openssl-library.org/post/2025-12-16-fbac-voting/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-12-16-fbac-voting/</id>
            
            
            <published>2025-12-16T00:00:00+00:00</published>
            <updated>2025-12-16T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The voting from the Foundation BAC has been <a href="/post/2025-12-02-fbac-nominations-extended/">extended through December
21</a>. If you want to
participate in the future of the OpenSSL Foundation, please <a href="https://openssl-communities.org/hub">join the
communities site</a> and vote for
your representative.</p>
<p>The currently running elections are:</p>
<ul>
<li><a href="https://openssl-communities.org/d/6pdaBelD/foundation-bac-academics-election/4">Academics</a></li>
<li><a href="https://openssl-communities.org/d/VQqtGwlJ/foundation-bac-individuals-election/2">Individuals</a></li>
<li><a href="https://openssl-communities.org/d/LzDphFJU/foundation-bac-distributions-election/3">Distributions</a></li>
<li><a href="https://openssl-communities.org/d/Rx8PO94Y/foundation-bac-large-business-election/4">Large Business</a></li>
<li><a href="https://openssl-communities.org/d/iovp7Vht/foundation-bac-small-business-election/3">Small Business</a></li>
</ul>
<p>For details about how the election works, please consult the
<a href="https://openssl-communities.org/d/ZTsN4RGg/foundation-election-guide">Foundation Election
Guide</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Library is moving to clang-format]]></title>
            <link href="https://openssl-library.org/post/2025-11-28-cstyle-format/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-11-28-cstyle-format/</id>
            
            
            <published>2025-11-28T00:00:00+00:00</published>
            <updated>2025-11-28T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Library would like to modernise and streamline development processes, especially to ensure effective code review and make the project easier for contributors to contribute to.</p>
<p>As part of this effort, we will be making some changes to our coding style guidelines and adopting clang-format using the WebKit C coding style as enforced by clang-format. We will transition to using clang-format to check pre-submissions and ensure code follows the format portions of the style guide before PRs are reviewed.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.2 End Of Life]]></title>
            <link href="https://openssl-library.org/post/2025-11-25-eol-32/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-11-25-eol-32/</id>
            
            
            <published>2025-11-25T00:00:00+00:00</published>
            <updated>2025-11-25T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL 3.2 series has reached its End of Life (EOL).
As such it will no longer receive publicly available security fixes.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Contributors to the OpenSSL Library (September 2025)]]></title>
            <link href="https://openssl-library.org/post/2025-10-27-september-contributors/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-10-27-september-contributors/</id>
            
            
            <published>2025-10-27T00:00:00+00:00</published>
            <updated>2025-10-27T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>September has come and gone, so it&rsquo;s past time to recognize new
contributors to the OpenSSL Library:</p>
<table>
  <thead>
      <tr>
          <th style="text-align: left">author</th>
          <th style="text-align: left">date</th>
          <th style="text-align: left">PR</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td style="text-align: left">xiaoloudongfeng</td>
          <td style="text-align: left">2025-09-02</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28415">fix length of digestinfo_sm3_der</a></td>
      </tr>
      <tr>
          <td style="text-align: left">Pkeane22</td>
          <td style="text-align: left">2025-09-07</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28467">Fixed typo</a></td>
      </tr>
      <tr>
          <td style="text-align: left">LuiginoC</td>
          <td style="text-align: left">2025-09-10</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28504">crypto/evp/bio_ok.c:Integer Overflow in BIO_f_reliable record parser leads to Out-of-Bounds Read</a></td>
      </tr>
      <tr>
          <td style="text-align: left">ritesh006</td>
          <td style="text-align: left">2025-09-11</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28393">doc: clarify SSL_SESSION_get0_hostname notes</a></td>
      </tr>
      <tr>
          <td style="text-align: left">jedenastka</td>
          <td style="text-align: left">2025-09-11</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28523">Fix cipher protocol ID type in docs</a></td>
      </tr>
      <tr>
          <td style="text-align: left">leesugil</td>
          <td style="text-align: left">2025-09-14</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28540">FIPS 186-5 auxiliary prime length check condition updated (Fixed #28526)</a></td>
      </tr>
      <tr>
          <td style="text-align: left">rodeka</td>
          <td style="text-align: left">2025-09-16</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28576">crypto/ml_dsa: fix public_from_private() error path to return failure</a></td>
      </tr>
      <tr>
          <td style="text-align: left">jonathimer</td>
          <td style="text-align: left">2025-09-18</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28614">Add Linux Foundation Health Score badge to README</a></td>
      </tr>
      <tr>
          <td style="text-align: left">bleeqer</td>
          <td style="text-align: left">2025-09-29</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28686">ts_conf: fix memory leak in TS_CONF_set_policies</a></td>
      </tr>
  </tbody>
</table>
<p>Here are more details on a sample of these pull requests.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[We Celebrate the Success of the Inaugural OpenSSL Conference in Prague]]></title>
            <link href="https://openssl-library.org/post/2025-10-23-osslcon25_conclusion/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
                <link href="https://openssl-library.org/post/2025-10-09-ossl3.5.4-fips-submission/?utm_source=atom_feed" rel="related" type="text/html" title="Lightship Security and the OpenSSL Corporation Submit OpenSSL 3.5.4 for FIPS 140-3 Validation" />
                <link href="https://openssl-library.org/post/2025-08-01-oss-conf25-early-bird/?utm_source=atom_feed" rel="related" type="text/html" title="Early Bird Registration is Now Open for the OpenSSL Conference 2025" />
            
                <id>https://openssl-library.org/post/2025-10-23-osslcon25_conclusion/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-10-23T00:00:00+00:00</published>
            <updated>2025-10-23T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<figure class="w-99/100 mx-auto"><img src="/images/blog/osslcon_pr.jpeg"
    alt="OpenSSL Conference 2025">
</figure>

<p>The <a href="https://openssl-corporation.org/"><strong>OpenSSL Corporation</strong></a> and the <a href="https://openssl-foundation.org/"><strong>OpenSSL Foundation</strong></a> celebrate the success of the inaugural <a href="https://openssl-conference.org/"><strong>OpenSSL Conference</strong></a>, held in Prague, October 7-9. This was the <strong>first time in the history</strong> of the OpenSSL Project that the full community met in person. Developers, legal experts, and users from <strong>academics, committers, distributions, individuals, large businesses, and small businesses</strong> came together to discuss project direction, share experience, and collaborate on the future of secure digital communication.</p>]]></content>
            
                 
                    
                 
                    
                         
                        
                            
                             
                                <category scheme="taxonomy:Tags" term="featured" label="featured" />
                            
                        
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Foundation Business Advisory Committee election]]></title>
            <link href="https://openssl-library.org/post/2025-10-15-fbac-election-2026/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-10-15-fbac-election-2026/</id>
            
            
            <published>2025-10-15T00:00:00+00:00</published>
            <updated>2025-10-15T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Believe it or not, it&rsquo;s time to start the election process for the
2026 Foundation Business Advisory Committee (FBAC). Advisory
committees play a critical role in the <a href="/about/governance/#committees">governance of the OpenSSL
Foundation</a>. This committee focuses on
the strategic direction of the OpenSSL Foundation and <a href="/mission-and-values">our
mission</a>.</p>
<p>Each of the six communities (Academics, Committers, Distributions,
Individuals, Large Businesses and Small Businesses) will have a
representative who will serve for one year. In addition to a monthly
meeting, representatives also lead discussions on the <a href="https://openssl-communities.org/hub/">Communities
platform</a> and generally promote
<a href="https://openssl-mission.org/">the OpenSSL Mission</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Lightship Security and the OpenSSL Corporation Submit OpenSSL 3.5.4 for FIPS 140-3 Validation]]></title>
            <link href="https://openssl-library.org/post/2025-10-09-ossl3.5.4-fips-submission/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
                <link href="https://openssl-library.org/post/2025-08-01-oss-conf25-early-bird/?utm_source=atom_feed" rel="related" type="text/html" title="Early Bird Registration is Now Open for the OpenSSL Conference 2025" />
            
                <id>https://openssl-library.org/post/2025-10-09-ossl3.5.4-fips-submission/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-10-09T00:00:00+00:00</published>
            <updated>2025-10-09T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<figure class="w-99/100 mx-auto"><img src="/images/blog/FIPS_Validation01.jpg"
    alt="FIPS Validation">
</figure>

<p><a href="https://lightshipsec.com/"><strong>Lightship Security</strong></a><strong>, an Applus+ Laboratories company and accredited cryptographic security test laboratory, and the <a href="https://openssl-corporation.org/">OpenSSL Corporation</a>, the co-maintainer of the OpenSSL Library, announce the submission of OpenSSL version 3.5.4 to the Cryptographic Module Validation Program (CMVP) for FIPS 140-3 validation.</strong></p>
<p>This submission confirms that <strong>the code is complete</strong> and that <strong>all included algorithms have successfully passed NIST testing and independent laboratory review</strong>. The final <strong>CMVP review and certificate issuance</strong> remain as the last step in the process.</p>]]></content>
            
                 
                    
                 
                    
                         
                        
                            
                             
                                <category scheme="taxonomy:Tags" term="featured" label="featured" />
                            
                        
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Release Announcement for OpenSSL 3.6.0]]></title>
            <link href="https://openssl-library.org/post/2025-10-01-3.6-release-announcement/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-10-01-3.6-release-announcement/</id>
            
            
            <published>2025-10-01T00:00:00+00:00</published>
            <updated>2025-10-01T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The final release of OpenSSL 3.6 is now live. We would like to thank all those who contributed to the OpenSSL 3.6 release, without whom the OpenSSL Library would not be possible.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Release Announcement for 3.5.4, 3.4.3, 3.3.5, 3.2.6, 3.0.18, 1.1.1zd and 1.0.2zm]]></title>
            <link href="https://openssl-library.org/post/2025-09-30-release-announcement/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-09-30-release-announcement/</id>
            
            
            <published>2025-09-30T00:00:00+00:00</published>
            <updated>2025-09-30T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Release Announcement for OpenSSL Library <strong>3.5.4</strong>, <strong>3.4.3</strong>, <strong>3.3.5</strong>, <strong>3.2.6</strong>, <strong>3.0.18</strong>, <strong>1.1.1zd</strong> and <strong>1.0.2zm</strong></p>
<p>The OpenSSL Project team announces the release of new versions of our open-source toolkit for SSL/TLS.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Contributors to the OpenSSL Library (August 2025)]]></title>
            <link href="https://openssl-library.org/post/2025-09-18-august-contributors/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-09-18-august-contributors/</id>
            
            
            <published>2025-09-18T00:00:00+00:00</published>
            <updated>2025-09-18T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Among the <a href="https://github.com/openssl/openssl/pulls?q=is%3Apr+label%3A%22approval%3A+ready+to+merge%22+-author%3Aopenssl-machine+created%3A2025-08-01..2025-08-31+">91 PRs</a> approved in August, 6 were from people who hadn&rsquo;t contributed to OpenSSL&rsquo;s code base until now.</p>
<table>
  <thead>
      <tr>
          <th style="text-align: left">author</th>
          <th style="text-align: left">date</th>
          <th style="text-align: left">PR</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td style="text-align: left">zl523856</td>
          <td style="text-align: left">2025-08-03</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28048">[RISC-V] Further optimization for AES-128-CBC decryption performance</a></td>
      </tr>
      <tr>
          <td style="text-align: left">ChillerDragon</td>
          <td style="text-align: left">2025-08-04</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28167">Improve english in endian comment</a></td>
      </tr>
      <tr>
          <td style="text-align: left">ritoban23</td>
          <td style="text-align: left">2025-08-13</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28259">Fix potential null pointer dereference in pkey_dh_derive</a></td>
      </tr>
      <tr>
          <td style="text-align: left">vkryl</td>
          <td style="text-align: left">2025-08-15</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28277">Android: Enable 16 KB ELF alignment for <code>arm64-v8a</code> and <code>x86_64</code> platforms</a></td>
      </tr>
      <tr>
          <td style="text-align: left">itot1198</td>
          <td style="text-align: left">2025-08-18</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28299">Remove unnecessary fetch-depth in GitHub Actions workflow</a></td>
      </tr>
      <tr>
          <td style="text-align: left">Leonabcd123</td>
          <td style="text-align: left">2025-08-28</td>
          <td style="text-align: left"><a href="https://github.com/openssl/openssl/pull/28362">Fixed typo</a></td>
      </tr>
  </tbody>
</table>
<p><a href="https://github.com/zl523856">zl523856</a> started by submitting <a href="https://github.com/openssl/openssl/issues/28027">an
issue</a> that asking
about the proposed change. The pull request includes <a href="https://github.com/openssl/openssl/pull/28048/files">some assembly code</a> that improves the performance of the AES-128-CBC decryption algorithm on the <a href="https://en.wikipedia.org/wiki/RISC-V">RISC-V architecture</a>. It&rsquo;s not the sort of code that just anyone can write. Open source projects, such as OpenSSL, can benefit from one-time contributions of expertise. In turn, anyone who uses OpenSSL or products that include the library also benefit. It&rsquo;s a beautiful thing.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Openssl 3.5.3 Release Announcement]]></title>
            <link href="https://openssl-library.org/post/2025-09-16-openssl-3.5.3/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-09-16-openssl-3.5.3/</id>
            
            
            <published>2025-09-16T00:00:00+00:00</published>
            <updated>2025-09-16T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Release Announcement for <a href="https://github.com/openssl/openssl/releases/tag/openssl-3.5.3">OpenSSL Library <strong>3.5.3</strong></a></p>
<p>The OpenSSL Project team announces the release of new versions of our open-source toolkit for SSL/TLS.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.6 Beta Release Announcement]]></title>
            <link href="https://openssl-library.org/post/2025-09-16-openssl-3.6-beta/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-09-16-openssl-3.6-beta/</id>
            
            
            <published>2025-09-16T00:00:00+00:00</published>
            <updated>2025-09-16T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The <a href="https://openssl.org">OpenSSL Project</a> is pleased to announce that <a href="https://github.com/openssl/openssl/releases/tag/openssl-3.6.0-beta1">OpenSSL 3.6 Beta1</a>
pre-release is available, adding significant functionality to the OpenSSL Library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.6 Alpha Release Announcement]]></title>
            <link href="https://openssl-library.org/post/2025-09-02-openssl-3.6-alpha/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-09-02-openssl-3.6-alpha/</id>
            
            
            <published>2025-09-02T00:00:00+00:00</published>
            <updated>2025-09-02T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The <a href="https://openssl.org">OpenSSL Project</a> is pleased to announce that <a href="https://github.com/openssl/openssl/releases/tag/openssl-3.6.0-alpha1">OpenSSL 3.6 Alpha1</a> pre-release is released and adding significant new functionality to
OpenSSL Library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Contributors to the OpenSSL Library (July 2025)]]></title>
            <link href="https://openssl-library.org/post/2025-08-08-july-contributors/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-08-08-july-contributors/</id>
            
            
            <published>2025-08-08T00:00:00+00:00</published>
            <updated>2025-08-08T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>In July, <a href="https://github.com/openssl/openssl/pulls?q=is%3Apr+label%3A%22approval%3A+ready+to+merge%22+-author%3Aopenssl-machine+created%3A2025-07-01..2025-07-31">58 pull
requests</a>
were approved for merge into the OpenSSL Library code base. There were
also four people who contributed code for the first time:</p>
<ul>
<li><a href="https://github.com/yzpgryx">yzpgryx</a> provided a <a href="https://github.com/openssl/openssl/pull/27963">fix to support the SM2 PEM format</a> with matching tests.</li>
<li><a href="https://github.com/caolanm">caolanm</a> designated an unchanging structure <a href="https://github.com/openssl/openssl/pull/28029">to be constant</a>.</li>
<li><a href="https://github.com/igus68">igus68</a> found a <a href="https://github.com/openssl/openssl/issues/27506">good first
issue</a> and <a href="https://github.com/openssl/openssl/pull/28080">fixed
it</a>. Before this fix,
the <a href="https://docs.openssl.org/3.0/man7/crypto/">OpenSSL cryptographic
library</a> would accept a
<a href="https://en.wikipedia.org/wiki/Certificate_revocation_list">certificate revocation
list</a>
that was invalid according to the <a href="https://www.rfc-editor.org/rfc/rfc5280.html#section-5.2.5">X.509 Public Key Infrastructure
specification</a>. Fun
fact: Igor Ustinov represents the Individuals community on the
<a href="https://openssl-communities.org/hub-foundation-tac/">Foundation Technical Advisory
Committee</a> and
this is his first pull request. And he&rsquo;s on a roll with <a href="https://github.com/openssl/openssl/pull/28160">another
pull request</a> that
addresses <a href="https://github.com/openssl/openssl/issues/24584">an
issue</a> with the
<a href="https://github.com/openssl/openssl/issues?q=state%3Aopen%20label%3A%22help%20wanted%22">help
wanted</a>
label.</li>
<li><a href="https://github.com/Saurabh825">Saurabh825</a> corrected the <a href="https://github.com/openssl/openssl/pull/28123">order of
options</a> for the
<a href="https://docs.openssl.org/master/man1/openssl-cmds/">asn1parse
command</a>.</li>
</ul>
<p>So far in the development cycle of OpenSSL 3.6, the <a href="https://status.openssl.org/versions/3.6/#companies-changes">plurality of
changes</a>
come from developers paid by either the OpenSSL Corporation or
Foundation. But individual contributions continue to make up a large
proportion of commits (41%) and overall changes (28%). Additionally
individual committers also have done 18.5% of reviews so far.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Early Bird Registration is Now Open for the OpenSSL Conference 2025]]></title>
            <link href="https://openssl-library.org/post/2025-08-01-oss-conf25-early-bird/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-08-01-oss-conf25-early-bird/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-08-01T00:00:00+00:00</published>
            <updated>2025-08-01T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<figure class="w-99/100 mx-auto"><img src="/images/blog/banner_earlybird.jpg"
    alt="Banner for Conference Early Bird">
</figure>

<p>Early Bird registration is now open for the <strong>inaugural <a href="https://openssl-conference.org/">OpenSSL Conference</a></strong>, taking place from <strong>October 7 to 9, 2025</strong>, in <strong>Prague, Czech Republic</strong>. Take advantage of exclusive Early Bird rates and <strong>secure your spot now</strong>!</p>
<p>Join the global community of cryptographers, open-source innovators, security experts, and thought leaders who shape the future of secure communications. The OpenSSL Conference promises to be a landmark event, uniting diverse perspectives from across technical, enterprise, academic, and regulatory fields.</p>]]></content>
            
                 
                    
                 
                    
                         
                        
                            
                             
                                <category scheme="taxonomy:Tags" term="featured" label="featured" />
                            
                        
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Library 3.6 Upcoming Release Announcement]]></title>
            <link href="https://openssl-library.org/post/2025-07-30-openssl-36-final-release/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-07-30-openssl-36-final-release/</id>
            
            
            <published>2025-07-29T00:00:00+00:00</published>
            <updated>2025-07-29T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The freeze date for OpenSSL 3.6 Alpha is rapidly approaching. If you have a feature ready,
please ensure that your associated PRs are posted, reviewed, and ready to be merged before the include/exclude
decision date (<strong>Tuesday, August 5, 2025</strong>) and merged before the repository freeze date (<strong>Tuesday, August 19, 2025</strong>).
Otherwise, the feature will be postponed until the next release.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Contributors to the OpenSSL Library (June 2025)]]></title>
            <link href="https://openssl-library.org/post/2025-07-10-june-contributors/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-07-10-june-contributors/</id>
            
            
            <published>2025-07-10T00:00:00+00:00</published>
            <updated>2025-07-10T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Every month the OpenSSL Library receives code in the form of pull
requests (PR) to GitHub. In June, <a href="https://github.com/openssl/openssl/pulls?q=is%3Apr+label%3A%22approval%3A+ready+to+merge%22+created%3A2025-06-01..2025-06-30">64 of those PRs were
merged</a>
into the default branch of the repository thus becoming a part of the
OpenSSL Library code base. Some of those changes came from developers
paid by either the <a href="https://openssl-foundation.org/">OpenSSL
Foundation</a> or the <a href="https://openssl-corporation.org/">OpenSSL
Corporation</a>. Some of the changes
come from <a href="https://status.openssl.org/years/2025/#companies-commits">developers who work for another
company</a>. And
some, ~40% so far in 2025, come from individuals.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[There's still time to share your story]]></title>
            <link href="https://openssl-library.org/post/2025-07-03-wild-ending/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-07-03-wild-ending/</id>
            
            
            <published>2025-07-03T00:00:00+00:00</published>
            <updated>2025-07-03T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Recently we opened <a href="https://secure.lglforms.com/form_engine/s/85lymH2pkvzm26KyuxafBQ">a short
survey</a>
for people to share their OpenSSL stories. We&rsquo;ve already heard from
people who use OpenSSL to:</p>
<ul>
<li>Analyze <a href="https://openssl-foundation.org/post/2025-03-12-quic-server-addition">QUIC</a> traffic.</li>
<li>Secure school cafeteria point of sale (POS) systems.</li>
<li>Protect letters sent digitally to a printer before they are sent
physically, on paper, via the postal system.</li>
<li>Generate a JSON Web Token (JWT) from a PEM (Privacy Enhanced Mail)
file without depending on a third party.</li>
<li>Support software that depends on OpenSSL.</li>
</ul>
<p><img src="/images/blog/2025-07-uses.svg" alt="How is OpenSSL used?"></p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Openssl Release Announcement for 3.5.1, 3.4.2, 3.3.4, 3.2.5, and 3.0.17]]></title>
            <link href="https://openssl-library.org/post/2025-07-01-release-announcement/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-07-01-release-announcement/</id>
            
            
            <published>2025-07-01T00:00:00+00:00</published>
            <updated>2025-07-01T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Release Announcement for OpenSSL Library <strong>3.5.1</strong>, <strong>3.4.2</strong>, <strong>3.3.4</strong>, <strong>3.2.5</strong>, and <strong>3.0.17</strong></p>
<p>The OpenSSL Project team announces the release of new versions of our open-source toolkit for SSL/TLS.</p>
<p>CVEs fixed in 3.5.1:</p>
<ul>
<li><a href="https://openssl-library.org/news/vulnerabilities/#CVE-2025-4575">CVE-2025-4575</a> - LOW - Fix x509 application adds trusted use instead of rejected use.
All other releases contain miscellaneous minor bug fixes. For details of the changes, refer to the release notes for versions 3.0, 3.2, 3.3, 3.4, and 3.5.</li>
</ul>
<p>Specific notes on upgrading from previous versions are available in the <a href="https://docs.openssl.org/master/man7/ossl-guide-migration/">OpenSSL Migration Guide</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Foundation is hiring Software Engineer (C Developer)]]></title>
            <link href="https://openssl-library.org/post/2025-06-19-foundation-sw-engineer/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-06-19-foundation-sw-engineer/</id>
            
            
            <published>2025-06-19T00:00:00+00:00</published>
            <updated>2025-06-19T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p><strong>Please note that we are no longer accepting new applications for
this position.</strong></p>
<p>OpenSSL Foundation is seeking a talented and motivated Software Engineer
(C Developer) to contribute to the development and maintenance of the
widely-used OpenSSL open-source cryptographic library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Share your user story]]></title>
            <link href="https://openssl-library.org/post/2025-06-01-openssl-wild/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-06-01-openssl-wild/</id>
            
            
            <published>2025-06-01T00:00:00+00:00</published>
            <updated>2025-06-01T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p><img src="/images/blog/2025_OpenSSL_Wild_Banner.jpg" alt="OpenSSL Library in the Wild: Share your story"></p>
<p>If you’re reading this blog post, you probably don’t need us to tell you how essential, widespread, and important the OpenSSL Library is. While our open source model means that everyone is freely able to use these tools, it also means we here at the OpenSSL Foundation don’t actually know all the great stories of how these tools are being used.</p>
<p>We’re looking for real stories of how the OpenSSL Library benefits your end users.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Deadline Extended: More Time to Submit Your Proposal for the OpenSSL Conference 2025]]></title>
            <link href="https://openssl-library.org/post/2025-05-30-cfp-extension-ossl25-conference/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-05-30-cfp-extension-ossl25-conference/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-05-30T00:00:00+00:00</published>
            <updated>2025-05-30T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<figure class="w-99/100 mx-auto"><img src="/images/blog/Call%20for%20Papers%20%281%29.png"
    alt="CFP Deadline Extended">
</figure>

<p>The <a href="https://openssl-conference.org/">OpenSSL Conference 2025</a> is extending its Call for Papers (CFP) deadline to <strong>June 22, 2025</strong>.</p>
<p>We understand that the best proposals often come from teams deep in the trenches of real-world security work. You now have additional time to craft and submit the <strong>talk, panel, or workshop</strong> that challenges assumptions, advances cryptographic innovation, drives and shapes the future of secure communications.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Brno May 2025: Hosting OpenSSL Projects and Corporation BAC Members for Alignment and Connection]]></title>
            <link href="https://openssl-library.org/post/2025-05-23-may25_brno_f2f/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-05-23-may25_brno_f2f/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-05-23T00:00:00+00:00</published>
            <updated>2025-05-23T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<figure class="w-99/100 mx-auto"><img src="/images/blog/may25_brno_group.jpeg"
    alt="OpenSSL Corporation, OpenSSL Projects, Corporation BACs, and OpenSSL Foundation"><figcaption>
      <p>Pictured here from left to right: Štefan Kremeň (Support Manager), Peter Gutmann (cryptlib),  Hana Andersen (Marcom Manager), Shayne Jones (cryptlib), Kajal Sapkota (MarCom Specialist), Kateřina Míčová (Business Admin), Daniela Kellnerová (MarCom Specialist), Norbert Pócs (Software Engineer), Tomáš Vávra (Engineering &amp; Standards Mgr.), Anton Arapov (Operations Manager), Tim Hudson (Corporation President), Matt Caswell (Foundation President), Tomáš Mráz (Foundation Public Support and Security Manager), James Bourne (FireDaemon Technologies), Jaroslav Řezník (Red Hat), David Hook (Bouncy Castle), Billy Bob Brumley (RIT)</p>
    </figcaption>
</figure>

<br>
<p>From May 14–16, the <strong>OpenSSL Corporation</strong> hosted a face-to-face working session in Brno, Czech Republic. The meeting was designed to bring together participants from the <strong>OpenSSL Projects</strong> and convene in an in-person meeting of the <strong>Corporation’s Business Advisory Committee (BAC)</strong>. The <strong>OpenSSL Foundation</strong> was invited to join on Wednesday and Thursday in the broader conversations with the OpenSSL Projects.</p>
<p>This was the first time these groups gathered in person in this configuration. The sessions served as an opportunity to strengthen working relationships, align on shared priorities, and focus on strategic coordination across the ecosystem.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[The OpenSSL Corporation and the OpenSSL Foundation Launch Distinguished Contributor Awards with OpenSSL 3.5 Honorees]]></title>
            <link href="https://openssl-library.org/post/2025-05-20-3.5-awards/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-05-20-3.5-awards/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-05-20T00:00:00+00:00</published>
            <updated>2025-05-20T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Corporation and the OpenSSL Foundation are launching the <strong>Distinguished Contributor Awards</strong>, a new programme formally recognising exceptional technical contributions to each OpenSSL Library release. These awards highlight individuals who drive critical advancements and demonstrate technical leadership in the evolution of the OpenSSL Library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Call for Papers Deadline Approaching – Don’t Miss Your Shot to Speak at the OpenSSL Conference 2025!]]></title>
            <link href="https://openssl-library.org/post/2025-05-15-cfp-openssl-conference/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-05-15-cfp-openssl-conference/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-05-15T00:00:00+00:00</published>
            <updated>2025-05-15T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<figure class="w-99/100 mx-auto"><img src="/images/blog/25839_OSSL_Banner_1128x191_A_01.jpg"
    alt="OpenSSL Corporation Banner">
</figure>

<p><strong>Dates:</strong> October 7–9, 2025
<strong>Location:</strong> Prague, Czech Republic
<strong>Submission Deadline:</strong> May 31, 2025</p>
<p>The <a href="https://openssl-conference.org/">OpenSSL Conference 2025</a> is accepting proposals for <strong>talks, panels, and workshops</strong>. This inaugural event will bring together developers, researchers, security engineers, compliance professionals, and policy experts working across open-source and commercial domains. While the OpenSSL Library remains central to modern cryptography, this conference is designed to support the broader community in building secure systems and advancing internet trust.</p>
<p>We are looking for speakers who can share real-world experiences, technical innovations, and practical insights that contribute to the field of security and cryptographic infrastructure.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Technical Advisory Committees Election Results]]></title>
            <link href="https://openssl-library.org/post/2025-05-12-tac25-results/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-05-12-tac25-results/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-05-12T00:00:00+00:00</published>
            <updated>2025-05-12T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The <a href="https://openssl-corporation.org/">OpenSSL Corporation</a> and the <a href="https://openssl-foundation.org/">OpenSSL Foundation</a> certify the results of the <strong>Technical Advisory Committee (TAC)</strong> elections. After a thorough nomination and voting process, the OpenSSL community has selected a group of distinguished individuals to provide guidance and advice to the OpenSSL Library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Nomination Deadline Extended: Technical Advisory Committees]]></title>
            <link href="https://openssl-library.org/post/2025-04-14-tac-nomination-extention/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-04-14-tac-nomination-extention/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-04-14T00:00:00+00:00</published>
            <updated>2025-04-14T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The nomination period for the <a href="https://openssl-corporation.org/post/2025-03-14-tac-announcement/">Technical Advisory Committees</a> (TACs) has been extended. The new deadline is <strong>Sunday, April 27, 2025</strong>.</p>
<p><strong>Take advantage of the extended timeline to submit thoughtful nominations — and play an active role in shaping the future of the OpenSSL Library. Your voice matters!</strong></p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.5 Final Release - Live]]></title>
            <link href="https://openssl-library.org/post/2025-04-08-openssl-35-final-release/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-04-08-openssl-35-final-release/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-04-08T00:00:00+00:00</published>
            <updated>2025-04-08T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The final release of OpenSSL 3.5 is now live. We would like to thank all those who contributed to the OpenSSL 3.5 release, without whom the OpenSSL Library would not be possible.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Join Us at the OpenSSL Conference in Prague – October 7 to 9, 2025 - Share Your Expertise and Shape the Future of Secure Communications]]></title>
            <link href="https://openssl-library.org/post/2025-04-02-openssl-conference25/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-04-02-openssl-conference25/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2025-04-02T00:00:00+00:00</published>
            <updated>2025-04-02T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<figure class="w-95/100 mx-auto"><img src="/images/blog/25839_OSSL_Banner_1128x191_A_01.jpg"
    alt="OpenSSL Conference Banner">
</figure>

<p>The OpenSSL Corporation and the OpenSSL Foundation are pleased to announce the <a href="https://openssl-conference.org/"><strong>OpenSSL Conference 2025</strong></a>, taking place from <strong>October 7 to 9, 2025</strong>, in the historic city of <strong>Prague, Czech Republic</strong>. This premier event brings together a global community of cryptography experts, legal professionals, and open-source enthusiasts dedicated to advancing cryptography and secure communications for three days of in-depth discussions, insights, and networking.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Thank You for Joining Our Live Q&A Session on Technical Advisory Committees]]></title>
            <link href="https://openssl-library.org/post/2025-03-27-qna-thank-you-live-session-participation/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-03-27-qna-thank-you-live-session-participation/</id>
            
            <author>
                        <name>Jitka Biolkova</name>
                    </author>
            <published>2025-03-27T00:00:00+00:00</published>
            <updated>2025-03-27T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>On March 24 and 25, 2025, we hosted two live Q&amp;A sessions to discuss the formation and role of the new Technical Advisory Committees (TACs) concerning the OpenSSL Library. These sessions featured:</p>
<ul>
<li><strong>Tim Hudson</strong>, President of the OpenSSL Corporation (Session 1)</li>
<li><strong>Matt Caswell</strong>, President of the OpenSSL Foundation (Sessions 1 and 2)</li>
<li><strong>Anton Arapov</strong>, Operations Director of the OpenSSL Corporation (Session 2)</li>
<li><strong>Hana Andersen</strong>, Marcom Manager of the OpenSSL Corporation (both sessions)</li>
<li>Moderated by <strong>Kajal Sapkota</strong></li>
</ul>
<p>These interactive webinars offered our community the opportunity to ask questions and better understand the purpose and structure of the TACs.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.5 Beta Release Announcement]]></title>
            <link href="https://openssl-library.org/post/2025-03-25-openssl-3.5-beta/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-03-25-openssl-3.5-beta/</id>
            
            
            <published>2025-03-25T00:00:00+00:00</published>
            <updated>2025-03-25T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The <a href="https://openssl.org">OpenSSL Project</a> is pleased to announce that <a href="https://github.com/openssl/openssl/releases/tag/openssl-3.5.0-beta1">OpenSSL 3.5 Beta1</a> pre-release is released and adding significant new functionality to
the OpenSSL Library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Do Not Miss Our Technical Advisory Committee Q&A Sessions - Get Involved!]]></title>
            <link href="https://openssl-library.org/post/2025-03-20-qa-tacs/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-03-20-qa-tacs/</id>
            
            <author>
                        <name>Hana Andersen</name>
                    </author>
            <published>2025-03-20T00:00:00+00:00</published>
            <updated>2025-03-20T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Thank you to everyone who registered and to those who went the extra mile to nominate candidates for the Technical Advisory Committees of the OpenSSL Corporation and OpenSSL Foundation.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Join Us in Forming the Technical Advisory Committees (TACs)]]></title>
            <link href="https://openssl-library.org/post/2025-03-14-tac-announcement/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-03-14-tac-announcement/</id>
            
            <author>
                        <name>Hana Andersen</name>
                    </author>
            <published>2025-03-14T00:00:00+00:00</published>
            <updated>2025-03-14T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The <a href="https://openssl-corporation.org/">OpenSSL Corporation</a> (primarily focused on commercial communities) and the <a href="https://openssl-foundation.org/">OpenSSL Foundation</a> (primarily focused on non-commercial communities) are pleased to announce the formation of the <strong>Technical Advisory Committees (TACs)</strong> to provide expert guidance and strategic direction for our technical initiatives. This marks a significant milestone, and we need dedicated individuals to help shape their future.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.5 Alpha Release Announcement]]></title>
            <link href="https://openssl-library.org/post/2025-03-11-openssl-3.5-alpha/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-03-11-openssl-3.5-alpha/</id>
            
            
            <published>2025-03-12T00:00:00+00:00</published>
            <updated>2025-03-12T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The <a href="https://openssl.org">OpenSSL Project</a> is pleased to announce that <a href="https://github.com/openssl/openssl/releases/tag/openssl-3.5.0-alpha1">OpenSSL 3.5 Alpha1</a> pre-release is released and adding significant new functionality to
OpenSSL Library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.1.2: FIPS 140-3 Validated]]></title>
            <link href="https://openssl-library.org/post/2025-03-11-fips-140-3/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-03-11-fips-140-3/</id>
            
            <author>
                        <name>Tomas Vavra</name>
                    </author>
            <published>2025-03-11T00:00:00+00:00</published>
            <updated>2025-03-11T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<figure class="w-75/100 mx-auto"><img src="/images/blog/FIPS_140-3_Logo_Color.png"
    alt="FIPS 140-3 Logo">
</figure>

<p>The <a href="https://openssl-corporation.org">OpenSSL Corporation</a> is pleased to announce that OpenSSL version 3.1.2 has achieved FIPS 140-3 validation, signifying its compliance with the rigorous cryptographic module security requirements set forth by the <a href="https://www.nist.gov/">National Institute of Standards and Technology</a> (NIST). This accomplishment marks a significant milestone in reinforcing trusted, standards-based encryption for organizations operating in regulated environments, including government agencies, healthcare institutions, and financial services.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.5 Alpha Repository Freeze Approaching]]></title>
            <link href="https://openssl-library.org/post/2025-02-28-alpha-freeze-approaching/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-02-28-alpha-freeze-approaching/</id>
            
            
            <published>2025-03-02T00:00:00+00:00</published>
            <updated>2025-03-02T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Project is announcing the upcoming release of OpenSSL 3.5 Alpha,
scheduled for March 11, 2025. As a result, the repository will be frozen before the release on <em><strong>March 6, 2025</strong></em>.</p>
<p>The included features can be found in the <a href="/post/2025-02-12-openssl-3.5-go-nogo/">OpenSSL 3.5 Feature Go/No-Go Decision</a> blog post.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.5 will be the next long term stable (LTS) release]]></title>
            <link href="https://openssl-library.org/post/2025-02-20-openssl-3.5-lts/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-02-20-openssl-3.5-lts/</id>
            
            
            <published>2025-02-20T00:00:00+00:00</published>
            <updated>2025-02-20T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce that <a href="/post/2025-02-04-release-announcement-3.5/">OpenSSL
3.5</a>
will be the next long term stable (LTS) release. Per <a href="/policies/general/versioning-policy/#long-term-stable-release">OpenSSL&rsquo;s LTS
policy</a>,
3.5 will be supported until April 8, 2030.</p>
<p>The previous LTS (<a href="/post/2021-09-06-openssl3.final/">OpenSSL 3.0</a>)
will continue to be fully supported until September 7, 2025 and
receive security fixes until September 7, 2026. Projects that
currently depend on 3.0 are strongly encouraged to switch to OpenSSL
3.5 once it has been released.</p>
<p>In addition, the OpenSSL Corporation and Foundation have agreed to
designate an LTS every two years. That means there will be an LTS
release in April of 2027, another in 2029, and so on. As always, each
LTS will be supported for 5 years with the final year&rsquo;s support being
security patches only. For more information, please see the <a href="/roadmap/">OpenSSL
Library Roadmap</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.5 Feature Branch Merge – Go/No-Go Decisions]]></title>
            <link href="https://openssl-library.org/post/2025-02-12-openssl-3.5-go-nogo/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-02-12-openssl-3.5-go-nogo/</id>
            
            
            <published>2025-02-12T00:00:00+00:00</published>
            <updated>2025-02-12T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We’re introducing a streamlined process for deciding which new features make it into each OpenSSL Library release. This involves two layers of readiness checks—technical and business—to help ensure features are both technically sound and well-aligned with the broader needs of the communities. For OpenSSL 3.5, the OpenSSL Technical Committee (OTC) has advised on technical readiness, and the Business Advisory Committee has advised on business readiness.</p>
<p>The go/no-go decisions ensure we merge well-vetted features into the main codebase for OpenSSL 3.5, complementing OpenSSL Library’s existing review process.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.5: Upcoming Release Announcement]]></title>
            <link href="https://openssl-library.org/post/2025-02-04-release-announcement-3.5/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-02-04-release-announcement-3.5/</id>
            
            
            <published>2025-02-04T00:00:00+00:00</published>
            <updated>2025-02-04T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The freeze date for OpenSSL 3.5 Alpha is rapidly approaching. If you have a feature on the planning page, please ensure that your associated PRs are posted, reviewed, and ready to be merged before the include/exclude decision date (<strong>Tuesday, February 11, 2025</strong>) and merged before the repository freeze date (<strong>Tuesday, February 25, 2025</strong>). Otherwise, the feature will be postponed until the next release.</p>
<h2 id="important-dates">Important dates</h2>
<ul>
<li><strong>Feature branches include/exclude decision date:</strong> February 11, 2025</li>
<li><strong>Feature branches merge:</strong> February 18, 2025</li>
<li><strong>Repository freeze date:</strong> February 25, 2025</li>
<li><strong>Alpha release date:</strong> March 11, 2025</li>
<li><strong>Beta release date:</strong> March 25, 2025</li>
<li><strong>Release date:</strong> April 8, 2025</li>
</ul>
<img src="/images/blog/release-3.5.svg" width=95% alt="release-3.5.svg" class="center" >
<h2 id="current-highlights-of-the-feature-list-planned-for-35-include">Current highlights of the feature list planned for 3.5 include:</h2>
<ul>
<li>QUIC server - <strong>QUIC (<a href="https://datatracker.ietf.org/doc/html/rfc9000">RFC 9000</a> - Quick UDP Internet Connections)</strong> is a protocol intended to deliver faster, secure communication for Internet applications. Standardized as RFC 9000, QUIC operates over UDP.</li>
<li>ML-KEM - <strong>Module Lattice Based Key Encapsulation Mechanism (<a href="https://csrc.nist.gov/pubs/fips/203/final">FIPS 203</a>)</strong>, a post-quantum cryptography algorithm for key encapsulation for secure key exchange.</li>
<li>ML-DSA - <strong>Module Lattice Based Digital Signature Algorithm (<a href="https://csrc.nist.gov/pubs/fips/204/final">FIPS 204</a>)</strong>, a post-quantum cryptography algorithm for signature generation and verification for proof of authenticity and non-repudiation.</li>
<li>SLH-DSA - <strong>Stateless Hash Based Digital Signature Algorithm (<a href="https://csrc.nist.gov/pubs/fips/205/final">FIPS 205</a>)</strong>,  a post-quantum cryptography algorithm for signature generation and verification for proof of authenticity and non-repudiation.</li>
</ul>
<p>If you have any questions or comments regarding the OpenSSL 3.5 release contact us at <a href="mailto:feedback@openssl.org">feedback@openssl.org</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Position and Plans on Private Key Formats for the ML-KEM and ML-DSA Post-quantum (PQ) Algorithms]]></title>
            <link href="https://openssl-library.org/post/2025-01-21-blog-positionandplans/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-01-21-blog-positionandplans/</id>
            
            <author>
                        <name>Hana Andersen</name>
                    </author>
            <published>2025-01-21T00:00:00+00:00</published>
            <updated>2025-01-21T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The anticipated future arrival of <em><strong>cryptographically relevant quantum computers</strong></em> (CRQCs),
that could undermine the algorithms that underlie the currently most widely used public key algorithms (ECDHE, ECDSA, DH and RSA),
has led to the development and recent standardisation of new &ldquo;post-quantum&rdquo; (PQ) algorithms, that are believed to not be vulnerable to CRQC attack.</p>
<p>Two of the first algorithms standardized are ML-KEM (for key agreement) and ML-DSA (for digital signatures).
These algorithms are standardized by NIST in FIPS 203 and FIPS 204. These define the algorithm parameters and how to correctly
perform the necessary mathematical operations, but do not define such details as data formats for public and private keys.
Those details were left to other standards organisations, such as the IETF.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Introducing Jon Ericson]]></title>
            <link href="https://openssl-library.org/post/2025-01-17-introducing-jon/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-01-17-introducing-jon/</id>
            
            
            <published>2025-01-17T00:00:00+00:00</published>
            <updated>2025-01-17T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>From the very beginning of the project, OpenSSL has depended on a
community of experts to enable secure and private communication. It&rsquo;s
safe to say that without volunteers contributing code, tests and
documentation, we wouldn&rsquo;t have the modern internet. In order to
preserve and grow that ecosystem, the <a href="https://openssl-foundation.org">OpenSSL
Foundation</a> has brought in Jon Ericson
as its first Communities Manager.</p>
<p>Jon began his programming career as an intern at the US National
Weather Service where he designed software to test instruments for the
Automated Surface Observing System
(<a href="https://www.weather.gov/asos/">ASOS</a>). He continued as a programmer
at the Jet Propulsion Laboratory (<a href="https://www.jpl.nasa.gov/">JPL</a>)
with the Shuttle Radar Topography Mission
(<a href="https://www.earthdata.nasa.gov/data/instruments/srtm">SRTM</a>)
ground-data team. When that project ended, he managed data processing
for the Tropospheric Emission Spectrometer
(<a href="https://tes.jpl.nasa.gov/tes/">TES</a>) mission which collected global
atmospheric data from heliosynchronous orbit. Along the way he
participated in open source projects such as Perl and Emacs via Usenet
groups and mailing lists.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Connect with us at FOSDEM]]></title>
            <link href="https://openssl-library.org/post/2025-01-16-foundation-at-fosdem/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2025-01-16-foundation-at-fosdem/</id>
            
            
            <published>2025-01-16T00:00:00+00:00</published>
            <updated>2025-01-16T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Foundation will be attending FOSDEM in Brussels, Belgium on 1-2 February 2025, and we’d like to connect with you!</p>
<p>The Free and Open Source Developers’ European Meeting (FOSDEM) is a volunteer-organized event to promote the widespread use of free and open source software. The conference includes 1,001 events across two days, taking place in 40 rooms on the ULB Solbosch Campus. There is no fee to participate and attend.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Foundation publishes first ever annual report]]></title>
            <link href="https://openssl-library.org/post/2024-12-23-foundation-annual-report/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-12-23-foundation-annual-report/</id>
            
            
            <published>2024-12-23T00:00:00+00:00</published>
            <updated>2024-12-23T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Foundation is pleased to share its Annual Report for fiscal year 2024, covering the period of August 1, 2023 through July 31, 2024. This public document is a first for the Foundation, reflecting a renewed commitment to transparency with our communities and the sponsors and donors whose contributions provide critical financial support.</p>
<p>One year ago, we celebrated the 25th anniversary of OpenSSL, marking the release of version 0.9.1c on December 23, 1998, and it seemed fitting to share this Annual Report today, on OpenSSL’s 26th birthday. So much has changed over those 26 years, but our reliance on our community of committers, contributors, and funders has not. We greatly appreciate the many contributions of many types that keep OpenSSL strong and secure and hope you enjoy reading about all that we achieved together.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Foundation BAC Distributions seat]]></title>
            <link href="https://openssl-library.org/post/2024-12-19-bacs-foundation-distros/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-12-19-bacs-foundation-distros/</id>
            
            
            <published>2024-12-19T00:00:00+00:00</published>
            <updated>2024-12-19T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>As previously communicated the recent election for the Distributions seat on the
Foundation BAC resulted in a tie between Dmitry Belyavsky (Red Hat) and John
Haxby (Oracle). As a result we will be re-running this election in early January
with just these two candidates. Voting will open on 3rd January 2025 and will
close on 10th January 2025.</p>
<p>The &ldquo;Distributions&rdquo; community includes maintainers of operating systems or
significant packages that integrate OpenSSL Foundation and OpenSSL Corporation
projects. If you are involved in an OpenSSL distribution then we encourage you
to <a href="https://openssl-communities.org/hub-distributions/">sign up</a> to the
community and vote in the second round of the election in January.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Announcing the Results of the Business Advisory Committee Elections]]></title>
            <link href="https://openssl-library.org/post/2024-12-17-bacs-election-results/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-12-17-bacs-election-results/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-12-17T00:00:00+00:00</published>
            <updated>2024-12-17T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Upon certification of the election results by the Election Committee, the <a href="https://openssl-foundation.org/">OpenSSL Foundation</a> and the <a href="https://openssl-corporation.org/">OpenSSL Corporation</a> are pleased to announce the official results of the Business Advisory Committee (BAC) elections. After a thorough nomination and voting process, the OpenSSL community has selected a group of distinguished individuals to provide guidance and advice to OpenSSL.</p>
<p><strong>Newly Elected Members</strong></p>
<p>The following candidates have been elected to serve on the Business Advisory Committee:</p>
<p><em><strong>OpenSSL Foundation BAC Members</strong></em></p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Re-opening donation opportunities to OpenSSL Foundation]]></title>
            <link href="https://openssl-library.org/post/2024-12-11-individual-sponsorship/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-12-11-individual-sponsorship/</id>
            
            
            <published>2024-12-11T00:00:00+00:00</published>
            <updated>2024-12-11T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Foundation is pleased to announce that we are reopening the opportunity for individuals to financially support our work through donations on <a href="https://github.com/sponsors/openssl">Github Sponsors</a>. Individual contributions of time, expertise, and financial support have always been critical to our ability to keep improving the OpenSSL software library, and we are excited to once again welcome financial contributions at all levels.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Business Advisory Committees Elections Are Now Open - Vote for Your Community Representative]]></title>
            <link href="https://openssl-library.org/post/2024-12-06-bacs-election/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-12-06-bacs-election/</id>
            
            <author>
                        <name>Hana Andersen</name>
                    </author>
            <published>2024-12-06T00:00:00+00:00</published>
            <updated>2024-12-06T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Thank you to everyone who registered, as well as those who took the extra step to nominate candidates, for the Business Advisory Committees of the OpenSSL Foundation and OpenSSL Corporation. We are now at the final step - <strong>voting</strong> - which is essential to complete the process.</p>
<p><strong>Start Date:</strong> December 5, 2024<br>
<strong>Deadline for Voting:</strong> December 15, 2024 11:59pm Pacific Time (US/ Canada)</p>
<p><strong>Election Committee</strong></p>
<p>The Election Committee is composed of the directors of the OpenSSL Foundation and the OpenSSL Corporation. This marks the first inaugural Election Committee, tasked with overseeing and managing the election processes across various communities. The committee is dedicated to ensuring that voting is conducted fairly, transparently, and in alignment with the established rules and procedures.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Nominations Remain Open Until Wednesday, December 4, 2024 - Based on Your Feedback!]]></title>
            <link href="https://openssl-library.org/post/2024-11-27-nominations-remain-open/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-11-27-nominations-remain-open/</id>
            
            <author>
                        <name>Hana Andersen</name>
                    </author>
            <published>2024-11-27T00:00:00+00:00</published>
            <updated>2024-11-27T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Thank you to everyone who attended our Q&amp;A sessions about the formation of Business Advisory Committees. We received valuable input from our communities, including requests to allow more time for nominations.</p>
<p>We have heard you, and we would like to announce that:</p>
<ul>
<li><strong>The nomination period has been extended until Wednesday, December 4, 2024.</strong></li>
<li><strong>The election period starts on Thursday, December 5, 2024 and ends on Sunday, December 15, 2024. You can change your vote up to the end of the election period.</strong></li>
</ul>
<p>This extension provides additional time to ensure everyone has the opportunity to nominate the individuals who can best represent the community’ s view and needs.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Websites mirrors]]></title>
            <link href="https://openssl-library.org/post/2024-11-26-websites-mirrors/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-11-26-websites-mirrors/</id>
            
            <author>
                        <name>Dmitry Misharov</name>
                    </author>
            <published>2024-11-26T00:00:00+00:00</published>
            <updated>2024-11-26T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>To align with our <a href="https://openssl-mission.org/">mission</a>, we have provisioned mirrors for our
websites, hosted through our chosen CDN vendor:</p>
<ul>
<li><a href="https://mirror.openssl.org">https://mirror.openssl.org</a></li>
<li><a href="https://mirror.openssl-mission.org">https://mirror.openssl-mission.org</a></li>
<li><a href="https://mirror.openssl-library.org">https://mirror.openssl-library.org</a></li>
<li><a href="https://mirror.openssl-foundation.org">https://mirror.openssl-foundation.org</a></li>
<li><a href="https://mirror.openssl-corporation.org">https://mirror.openssl-corporation.org</a></li>
<li><a href="https://mirror.openssl-projects.org">https://mirror.openssl-projects.org</a></li>
<li><a href="https://mirror.openssl-conference.org">https://mirror.openssl-conference.org</a></li>
</ul>
<p>These mirrors are accessible in locations where our original websites might be blocked.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Upcoming Webinar - Working with X.509 Keys and Certificates]]></title>
            <link href="https://openssl-library.org/post/2024-11-08-x509-webinar/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-11-08-x509-webinar/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-11-08T00:00:00+00:00</published>
            <updated>2024-11-08T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p><strong>Advance Your Skills in X.509 Certificate Management with OpenSSL</strong></p>
<ul>
<li><strong>Date:</strong> Nov 21, 2024</li>
<li><strong>Time:</strong> 04:00 PM Eastern Time (US and Canada)</li>
<li><strong>Duration:</strong> 1 hour</li>
<li><strong>Location:</strong> Online Webinar (link to be provided upon registration)</li>
<li><a href="https://api.transpond.io/form?am=38291&amp;fid=36899&amp;host=true">Register Here</a></li>
</ul>
<p><strong>Are you looking to deepen your understanding of X.509 keys and certificates or sharpen your command-line skills?</strong></p>
<p>Join us for a comprehensive webinar on X.509 certificate management led by Viktor Dukhovni, an OpenSSL Software Engineer. This session covers essential concepts and hands-on techniques using OpenSSL’s command-line tools.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Forms Business Advisory Committees - Shape the Future - Join Now!]]></title>
            <link href="https://openssl-library.org/post/2024-10-30-join-bacs/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-10-30-join-bacs/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-10-30T00:00:00+00:00</published>
            <updated>2024-10-30T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The <a href="https://openssl-foundation.org/">OpenSSL Foundation</a> (primarily focused on non-commercial communities) and the <a href="https://openssl-corporation.org/">OpenSSL Corporation</a> (primarily focused on commercial communities) are pleased to announce the formation of Business Advisory Committees (BAC), inviting our communities - Distributions, Committers, Small Businesses, Large Businesses, Individuals, and Academics - to actively engage in shaping the future of <a href="https://openssl.org/">OpenSSL</a>. These advisory bodies are critical in enhancing our governance structure, ensuring that the decisions reflect the diverse stakeholders involved and that our <a href="https://openssl-mission.org/">Mission and Values</a> stay aligned with the community’s needs.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.4 Final Release Live]]></title>
            <link href="https://openssl-library.org/post/2024-10-22-openssl-3-4-final/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-10-22-openssl-3-4-final/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-10-22T00:00:00+00:00</published>
            <updated>2024-10-22T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The final release of OpenSSL 3.4 is now live. We would like to thank all those who contributed to the OpenSSL 3.4 release, without whom OpenSSL would not be possible.</p>
<p>OpenSSL delivers the following significant new features:</p>
<ul>
<li>Support for Integrity only cipher suites (RFC 9150)</li>
<li>JITTER RNG support via statically linked jitterentropy library</li>
<li>RFC 5755 Attribute Certificate support</li>
<li>FIPS indicators in support of FIPS 140-3 validation</li>
<li>Improved Base64 BIO input handling and error reporting</li>
<li>XOF Digest size reporting improvements</li>
<li>Windows Registry key-based directory lookup</li>
<li>Support for several X509v3 extensions</li>
<li>Support for position independent executables in the openssl app to support address space layout randomization</li>
</ul>
<p>Please see the <a href="https://github.com/openssl/openssl/blob/openssl-3.4/CHANGES.md">CHANGES.md</a> file in the release for a full list of changes since OpenSSL 3.3</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL is hiring Communities Manager]]></title>
            <link href="https://openssl-library.org/post/2024-10-22-communities-manager/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-10-22-communities-manager/</id>
            
            
            <published>2024-10-22T00:00:00+00:00</published>
            <updated>2024-10-22T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p><strong>Please note that we are no longer accepting new applications for
this position.</strong></p>
<p>OpenSSL is hiring for a Communities Manager to join our team.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Introducing Amy Parker]]></title>
            <link href="https://openssl-library.org/post/2024-10-07-introducing-amy/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-10-07-introducing-amy/</id>
            
            
            <published>2024-10-07T00:00:00+00:00</published>
            <updated>2024-10-07T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL welcomes Amy Parker as the newest member of the
<a href="https://openssl-foundation.org">OpenSSL Foundation</a> team. Amy joins us in the
newly created position of Chief Funding Officer, a fundraising role focused on
revenue generation through corporate sponsorship and other
charitable/non-commercial contributions. Funds raised will help the Foundation
continue to deliver on its mission of providing security and privacy tools to
everyone, everywhere.</p>
<p>A strategic leader with more than twenty years of senior-level fundraising
experience, Amy has worked for prestigious educational and cultural institutions
including the Wikimedia Foundation, Smithsonian Institution, The New York Public
Library, and the University of North Carolina at Chapel Hill. She has been part
of several record-setting fundraising campaigns, including the Smithsonian’s
first-ever comprehensive campaign, which raised over $1.8 billion, and the $2
billion Carolina First Campaign, which was one of the 5 largest campaigns in US
higher education at the time.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.4 beta released]]></title>
            <link href="https://openssl-library.org/post/2024-10-07-openssl-3-4-beta/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-10-07-openssl-3-4-beta/</id>
            
            <author>
                        <name>Neil Horman</name>
                    </author>
            <published>2024-10-07T00:00:00+00:00</published>
            <updated>2024-10-07T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL 3.4 beta 1 has now been made available.</p>
<p>Our beta releases are considered feature complete for the release, meaning
that between now and the final release, only bug fixes are expected (if any).
Notable features of this release are available in <a href="https://github.com/openssl/openssl/blob/openssl-3.4/NEWS.md">NEWS.md</a>
within the source tarball.</p>
<p>Beta releases are provided to our communities for testing and feedback
purposes.  If you use OpenSSL, and particularly if you intend to upgrade to
OpenSSL 3.4 when it is released, we strongly encourage you to download this
beta release, and test it within whatever  quality control mechanisms you
have, providing feedback via our GitHub issue page at
<a href="http://github.com/openssl/openssl/issues">http://github.com/openssl/openssl/issues</a>, so that we can address any
shortcomings prior to the final release</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Corporation's Silver Sponsorship at ICMC 2024 - A Retrospective]]></title>
            <link href="https://openssl-library.org/post/2024-09-25-icmc24-retrospective/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-09-25-icmc24-retrospective/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-09-27T00:00:00+00:00</published>
            <updated>2024-09-27T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL Corporation&rsquo;s participation as a Silver Sponsor at the International Cryptographic Module Conference (ICMC) 18<sup>th</sup> - 20<sup>th</sup> September 2024 marked an important milestone in our continued commitment to advancing cryptographic technologies. As a critical player in secure communication, OpenSSL&rsquo;s involvement highlighted our dedication to fostering collaboration, innovation, and security within the cryptographic community.</p>
<p>ICMC 2024 provided a valuable platform for industry leaders to engage in key discussions surrounding cryptographic standards, challenges, and innovations. Through our sponsorship, OpenSSL contributed to critical dialogues on post-quantum cryptography, regulatory compliance, and developing secure, open-source cryptographic solutions.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Lightship Security Partnership with OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2024-09-18-lightship-partnership/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-09-18-lightship-partnership/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-09-18T00:00:00+00:00</published>
            <updated>2024-09-18T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL is sharing Lightship Security&rsquo;s latest press release, highlighting the new partnership with the OpenSSL Corporation. Read the full release below:</p>
<p><strong>Lightship Security, an Applus+ Laboratories company and a leading cryptographic security test lab, announces its agreement with the OpenSSL Corporation to provide FIPS 140-3 validation services for the OpenSSL cryptographic library.</strong></p>
<p>The OpenSSL Corporation provides commercial support for users of the OpenSSL Library, a critical component of secure communications in enterprise technologies.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Performance benchmarks dashboard]]></title>
            <link href="https://openssl-library.org/post/2024-09-17-performance-benchmarks/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-09-17-performance-benchmarks/</id>
            
            
            <published>2024-09-17T00:00:00+00:00</published>
            <updated>2024-09-17T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We would like to announce the release of the <strong>OpenSSL Performance Benchmarks Dashboard</strong>, designed
to track the impact of code changes on performance. The key focus of this dashboard is relative
performance so we can assess how various code modifications affect OpenSSL&rsquo;s performance across
versions. This helps ensure that we&rsquo;re aware of any potential performance impacts in advance,
allowing us to maintain or improve efficiency with each update.</p>
<p>You can explore the dashboard here:
<a href="https://openssl-library.org/performance/">OpenSSL Performance Benchmarks Dashboard</a>.
Additionally, it can be conveniently accessed from the main menu of this site under the &ldquo;Resources&rdquo;
section.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Post-Quantum Algorithms in OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2024-09-17-post-quantum/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-09-17-post-quantum/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2024-09-17T00:00:00+00:00</published>
            <updated>2024-09-17T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Recently NIST published a number of post-quantum algorithm standards (ML-KEM,
ML-DSA, and SLH-DSA). With these new NIST publications, OpenSSL is now prepared
for implementation.</p>
<p>We’ve recently been receiving a lot of questions about these new standards so we
wanted to make our position clear:</p>
<ul>
<li>We intend to implement support for these algorithms in our providers in a
future version of OpenSSL</li>
<li>We are currently putting together our project plans for this, stay tuned for
more information regarding timeline</li>
<li>We invite qualified and skilled individuals to help us implement these
algorithms and integrate them into OpenSSL in accordance with our standards and policies.</li>
</ul>
<p>From early 2022 a research project made available a test vehicle enabling TLS1.3
and X.509 support for many pre-standard and other experimental post-quantum
algorithms via the OpenSSL provider interface, called
<a href="https://github.com/open-quantum-safe/oqs-provider">oqs-provider</a>. Its primary
author and maintainer (<a href="https://github.com/baentsch">Michael Baentsch</a>) has now
joined the OpenSSL team with the goal to support an efficient, secure, smooth
and seamless integration of the now standardised post-quantum algorithms from
NIST into the OpenSSL code base. Many lessons learnt from the process of
building and integrating
<a href="https://github.com/open-quantum-safe/oqs-provider">oqs-provider</a> into
downstream applications will be applied to this process.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.4 alpha released]]></title>
            <link href="https://openssl-library.org/post/2024-09-10-openssl-3-4-alpha/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-09-10-openssl-3-4-alpha/</id>
            
            <author>
                        <name>Neil Horman</name>
                    </author>
            <published>2024-09-10T00:00:00+00:00</published>
            <updated>2024-09-10T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL 3.4 alpha 1 has now been made available.</p>
<p>Our Alpha releases are considered feature complete for the release, meaning
that between now and the final release, only bug fixes are expected (if any).
Notable features of this release are available in CHANGES.md within the source
tarball.</p>
<p>Alpha releases are provided to our communities for testing and feedback
purposes.  If you use OpenSSL, and particularly if you intend to upgrade to
OpenSSL 3.4 when it is released, we strongly encourage you to download this
alpha release, and test it within whatever  quality control mechanisms you
have, providing feedback via our GitHub issue page at
<a href="http://github.com/openssl/openssl/issues">http://github.com/openssl/openssl/issues</a>, so that we can address any
shortcomings prior to the final release</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL considering TLS 1.0/1.1 deprecation]]></title>
            <link href="https://openssl-library.org/post/2024-09-10-tls-deprecation/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-09-10-tls-deprecation/</id>
            
            <author>
                        <name>Neil Horman</name>
                    </author>
            <published>2024-09-10T00:00:00+00:00</published>
            <updated>2024-09-10T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Recently, OpenSSL proposed the deprecation of TLS 1.0/1.1 and solicited
community feedback on the idea.</p>
<p>Feedback on the proposal was generally split down the middle, with half of the
respondents indicating immediate depreciation with near-term removal was
acceptable, while the remainder of the respondents with affirmative opinions
noted that they represent, or know of products whose environment disallowed
updating to TLS1.2 or later, and would need to re-enable the deprecated
features for the foreseeable future.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Join Our Webinar on Debugging OpenSSL Applications]]></title>
            <link href="https://openssl-library.org/post/2024-08-30-debugging-webinar/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-08-30-debugging-webinar/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-08-30T00:00:00+00:00</published>
            <updated>2024-08-30T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Debugging is a crucial aspect of developing and maintaining reliable software. However, debugging can become particularly challenging when applications incorporate diverse and complex components like OpenSSL. This webinar is designed to help you navigate these complexities.</p>
<h2 id="webinar-details">Webinar Details</h2>
<p><strong>Date:</strong> September 11, 2024 <br>
<strong>Time:</strong> 09:00 AM Pacific Time (US and Canada) <br>
<strong>Platform:</strong> Zoom <br>
<strong>Topic:</strong> Debugging OpenSSL Applications</p>
<p><strong>Registration Link:</strong><a href="https://api.transpond.io/form?am=38291&amp;fid=35239&amp;host=true"> Click here to register</a></p>
<h2 id="what-to-expect">What to Expect</h2>
<ul>
<li><strong>Internal Debugging Tools</strong>: Learn about the facilities OpenSSL provides to help you gain visibility into its internal behavior, allowing for more effective troubleshooting.</li>
<li><strong>External Diagnostic Tools</strong>: Explore additional tools that can be integrated with OpenSSL to diagnose and resolve more intricate issues.</li>
</ul>
<p>For professionals dealing with OpenSSL, mastering these debugging techniques is essential to ensuring the stability and security of their applications.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Join OpenSSL at the ICMC 2024 - Visit Our Exhibit Booth!]]></title>
            <link href="https://openssl-library.org/post/2024-08-20-icmc24/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-08-20-icmc24/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-08-20T00:00:00+00:00</published>
            <updated>2024-08-20T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL is pleased to announce its participation as a Silver Sponsor at the upcoming International Cryptographic Module Conference (ICMC) 2024, taking place from 18<sup>th</sup> to 20<sup>th </sup>September. Visit our booth and attend our presentations to discover how we can help each other.</p>
<!-- more -->
<h2 id="event-details">Event Details</h2>
<p><strong>Conference Name:</strong> <a href="https://icmconference.org/">International Cryptographic Module Conference</a><br />
<strong>Dates:</strong>  18<sup>th</sup> - 20<sup>th</sup> September 2024<br />
<strong>Location:</strong> DoubleTree by Hilton, San Jose, California<br />
<strong>Our Booth Number:</strong>	102</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.4 Alpha release approaching]]></title>
            <link href="https://openssl-library.org/post/2024-08-16-3.4-alpha-approaching/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-08-16-3.4-alpha-approaching/</id>
            
            <author>
                        <name>Neil Horman</name>
                    </author>
            <published>2024-08-16T13:00:00+00:00</published>
            <updated>2024-08-16T13:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The freeze date for OpenSSL 3.4 Alpha is rapidly approaching.</p>
<!-- more -->
<p><strong>Alpha freeze approaching</strong></p>
<p>The freeze date for OpenSSL 3.4 Alpha is rapidly approaching. Planned features
are viewable on our <a href="https://github.com/orgs/openssl/projects/12/views/5">3.4 Planning page</a>.
If you have a feature on the planning
page, please ensure that your associated PRs are posted, reviewed, and merged
prior to the freeze date (Friday, Aug 30, 2024), or it will be postponed until
the next release.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New Governance Structure and New Projects under the Mission]]></title>
            <link href="https://openssl-library.org/post/2024-07-24-openssl-new-governance-structure/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-07-24-openssl-new-governance-structure/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-07-24T11:00:00+00:00</published>
            <updated>2024-07-24T11:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>As part of our ongoing journey, OpenSSL is evolving to provide more opportunities for engagement that more effectively align with our <a href="https://openssl-mission.org/">mission statement and promote our values</a>. OpenSSL is implementing various mechanisms to foster greater community involvement and enable our communities to play a key and active role in the decision-making process.</p>
<!-- more -->
<p><strong>New Governance Framework</strong></p>
<p>OpenSSL has two independent, co-equal organizations to support the OpenSSL Mission:</p>
<ul>
<li>The <a href="https://openssl-foundation.org/">OpenSSL Foundation</a> primarily focuses on non-commercial communities.</li>
<li>The <a href="https://openssl-corporation.org/">OpenSSL Corporation</a> primarily focuses on commercial communities.</li>
</ul>
<p>This balanced approach ensures that both entities can operate independently and make decisions autonomously.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL is hiring - Fundraiser]]></title>
            <link href="https://openssl-library.org/post/2024-07-24-fundraiser/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-07-24-fundraiser/</id>
            
            
            <published>2024-07-24T00:00:00+00:00</published>
            <updated>2024-07-24T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p><strong>Note that this position has now been filled and we are no longer accepting
applications</strong></p>
<p>OpenSSL is hiring for a Fundraiser to join our team</p>
<!-- more -->
<p>We are seeking a Fundraiser to join our team. As a Fundraiser at OpenSSL, you
will play a vital role in sustaining critical components of internet
infrastructure that enable secure communications around the world. In addition
to your fundraising role, you must align with and uphold our core
<a href="https://openssl-mission.org/">values and mission</a> in your every day
professional activities. This role will require you to
have strong networks and relationships with our various sponsors, customers and
communities in order to help us identify and bring on board new sponsors for our
project as well as maintain our existing ones. You will also hold significant
responsibility for developing our sponsorship and fundraising program in order
to ensure that our sponsors are getting good value from their engagement with us
whilst at the same time maximizing the resources available to OpenSSL to further
develop and expand.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Join Our Exclusive Webinar on Performance Tuning with OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2024-07-18-august-webinar/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-07-18-august-webinar/</id>
            
            
            <published>2024-07-18T13:00:00+00:00</published>
            <updated>2024-07-18T13:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Secure communication is vital in today&rsquo;s digital world, but it sometimes slows down your applications. We invite you to an insightful webinar on optimizing application performance using OpenSSL. This session is designed for individuals seeking to enhance the security and efficiency of their applications.</p>
<!-- more -->
<h2 id="webinar-details">Webinar Details</h2>
<p><strong>Date:</strong> August 1, 2024 <br>
<strong>Time:</strong> 09:00 AM Pacific Time (US and Canada) <br>
<strong>Platform:</strong> Zoom <br>
<strong>Topic:</strong> Performance Tuning with OpenSSL</p>
<p><strong>Registration Link:</strong><a href="https://zoom.us/webinar/register/8917163125507/WN_-4zEZ7uDRbqxQTrqCn3hww"> Click here to register</a></p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL mailing lists are moving to Google Groups]]></title>
            <link href="https://openssl-library.org/post/2024-07-16-google-groups/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-07-16-google-groups/</id>
            
            
            <published>2024-07-17T13:00:00+00:00</published>
            <updated>2024-07-17T13:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are announcing a change in how communication and collaboration will take place within
the OpenSSL community. Effective August 1st, 2024, the OpenSSL mailing lists will migrate
to Google Groups. This transition is designed to streamline communication channels and
simplify our infrastructure.</p>
<!-- more -->
<h2 id="why-the-change">Why the change?</h2>
<p>Over the years, the combintation of Postfix and Mailman has served us well, but it&rsquo;s time to move on
and explore better options. Google Groups offers several advantages that align with our goals:</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Large issue cleanup in OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2024-06-25-issue-cleanup/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-06-25-issue-cleanup/</id>
            
            
            <published>2024-06-25T16:00:00+00:00</published>
            <updated>2024-06-25T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL is cleaning up its issue backlog</p>
<!-- more -->
<h2 id="whats-going-on">Whats going on?</h2>
<p>Recently, some may have noticed issues (particularly old ones) in the openssl
repository have received an update, having the &lsquo;inactive&rsquo; label applied to them
with a comment indicating that they will be closed at the end of the 3.4
development cycle.  OpenSSL currently has almost 2000 outstanding issues in its
issue list, many of which have been sitting idle for multiple years.  In an
effort to better plan and schedule work for the OpenSSL development team, it has
become increasingly clear that, to do so efficiently, the issue list must be
reduced, so as to better identify those issues which are impacting the larger
user base more visibly for planning purposes.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New OpenSSL patch releases available]]></title>
            <link href="https://openssl-library.org/post/2024-06-04-patch-releases-available/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-06-04-patch-releases-available/</id>
            
            
            <published>2024-06-04T16:00:00+00:00</published>
            <updated>2024-06-04T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>New OpenSSL patch releases are available</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Soliciting input regarding a potential hardening effort]]></title>
            <link href="https://openssl-library.org/post/2024-05-07-soliciting-input-on-a-hardening-effort/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-05-07-soliciting-input-on-a-hardening-effort/</id>
            
            
            <published>2024-06-03T20:00:00+00:00</published>
            <updated>2024-06-03T20:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL is soliciting input on a hardening effort for our library.  The details
can be found here:
<a href="https://github.com/openssl/openssl/discussions/24321">https://github.com/openssl/openssl/discussions/24321</a></p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Upcoming Webinar: Getting Started with QUIC and OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2024-05-22-quic-webinar/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-05-22-quic-webinar/</id>
            
            
            <published>2024-05-28T16:00:00+00:00</published>
            <updated>2024-05-28T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce our upcoming webinar, Getting Started with QUIC and OpenSSL.</p>
<p>In this brief yet comprehensive session, we&rsquo;ll dive into the basics of QUIC and guide you through implementing a simple client using the QUIC OpenSSL API. By the end of this webinar, you&rsquo;ll have a solid grasp of creating a client application that connects to a server and receives data. Our demo client may be straightforward, but it serves as the perfect playground to explore and observe the QUIC protocol in action. Get ready to see QUIC in motion and discover the tools to monitor its performance effectively!</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OSTIF and Trail of Bits Complete Audit of OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2024-05-02-ostif/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-05-02-ostif/</id>
            
            
            <published>2024-05-02T16:00:00+00:00</published>
            <updated>2024-05-02T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL would like to announce the publication of the final report of a recent
security audit conducted on the OpenSSL software library.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Releases distribution changes]]></title>
            <link href="https://openssl-library.org/post/2024-04-30-releases-distribution-changes/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-04-30-releases-distribution-changes/</id>
            
            
            <published>2024-04-30T16:00:00+00:00</published>
            <updated>2024-04-30T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>I&rsquo;d like to give you a heads-up about some changes we&rsquo;re making at OpenSSL. We&rsquo;re simplifying how
you can get our software, and that means we&rsquo;re phasing out some older methods that don’t quite fit
with the way the web works today.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[QUIC server preview branch available for testing and feedback]]></title>
            <link href="https://openssl-library.org/post/2024-03-10-quic-server-preview/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-03-10-quic-server-preview/</id>
            
            
            <published>2024-04-16T13:45:00+00:00</published>
            <updated>2024-04-16T13:45:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce the availability of a feature preview for our OpenSSL
QUIC server functionality. This is an early technology preview which is being
published to seek feedback from our communities.</p>
<p>This preview is now available in the <a href="https://github.com/openssl/openssl/tree/feature/quic-server"><code>feature/quic-server</code> branch</a> of
the OpenSSL repository on GitHub. Those interested in providing early feedback
on our QUIC server functionality are invited to download and build this branch.</p>
<p>It is important to note that this branch represents a prototype phase at this
time and many aspects of the planned functionality are not yet implemented. In
particular, only a very small subset of the full SSL API is currently
implemented. This preview is being released to enable all of our communities to
provide their feedback as part of the API design process and in order to
validate our requirements prior to the finalisation of the API.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Upcoming Webinar: Writing a TLS Client]]></title>
            <link href="https://openssl-library.org/post/2024-04-15-april-webinar/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-04-15-april-webinar/</id>
            
            
            <published>2024-04-15T09:00:00+00:00</published>
            <updated>2024-04-15T09:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce our upcoming webinar, Writing a TLS Client.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.3 Final Release Live]]></title>
            <link href="https://openssl-library.org/post/2024-04-10-3.3-final-release/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-04-10-3.3-final-release/</id>
            
            
            <published>2024-04-10T12:00:00+00:00</published>
            <updated>2024-04-10T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The final release of OpenSSL 3.3 is now live. This is the first release in accordance with our adoption of biannual <a href="https://www.openssl-library.org/policies/general/release-policy">time-based releases</a>. We would like to thank all those who contributed to the OpenSSL 3.3 release, without whom, OpenSSL would not be possible.</p>
<p>OpenSSL 3.3 delivers the following new features:</p>
<ul>
<li>QUIC qlog diagnostic logging support</li>
<li>Support for the non-blocking polling of multiple QUIC connections or stream objects</li>
<li>Support for optimised generation of end-of-stream frames for QUIC connections</li>
<li>Support for disabling QUIC event processing when making API calls</li>
<li>Support for configuring QUIC idle timeout durations</li>
<li>Support for querying the size and utilisation of a QUIC stream’s write buffer</li>
<li>Support for RFC 9480 and RFC 9483 extensions to CMP</li>
<li>Ability to disable OpenSSL usage of atexit(3) at build time</li>
<li>Year 2038-compatible SSL_SESSION APIs</li>
<li>Ability to automatically derive Chinese Remainder Theorem (CRT) parameters when requested</li>
<li>Ability to ignore unknown algorithm names in TLS signature algorithm and group configuration strings</li>
<li>Ability to configure a TLS 1.3 server to prefer PSK-only key exchange during session resumption</li>
<li>Added a new EVP_DigestSqueeze() API. This allows SHAKE to squeeze multiple times with different output sizes.</li>
<li>Added exporter for CMake on Unix and Windows, alongside the pkg-config exporter.</li>
<li>And more. Please check out <a href="https://github.com/openssl/openssl/blob/efb87dd7936dd970d0477180f9e3ba174e960e6e/CHANGES.md">CHANGES.md</a> for a full list of changes between OpenSSL 3.2 and OpenSSL 3.3.</li>
</ul>
<p>OpenSSL 3.3 is a regular release, upon this final release a one-year Full Support period is initiated for regular releases. During this phase, bugs and security issues are addressed and fixed according to the <a href="https://www.openssl-library.org/policies/technical/stable-release-updates">Stable Release Updates Policy</a>. Immediately after the Full Support phase ends, the Maintenance Support phase begins, lasting for one year. During this phase, the primary focus is on fixing security issues, although other bugs may be addressed at the discretion of OpenSSL engineering.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Celebrating 25 Years of OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2024-04-03-25-years-tshirt-update/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-04-03-25-years-tshirt-update/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-04-03T06:00:00+00:00</published>
            <updated>2024-04-03T06:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce that we have successfully distributed nearly 100 limited edition T-shirts commemorating the 25th anniversary of OpenSSL&rsquo;s existence.</p>
<p>We appreciate the support of all our communities, users, individual contributors and support customers, without which we would not be able to continue our mission and deliver on our open source values. These continue to drive the success and evolution of OpenSSL, and we couldn&rsquo;t be more appreciative.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.3 Beta Release Live]]></title>
            <link href="https://openssl-library.org/post/2024-03-29-3.3-beta-release/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-03-29-3.3-beta-release/</id>
            
            
            <published>2024-04-02T07:00:00+00:00</published>
            <updated>2024-04-02T07:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The beta release of OpenSSL 3.3 is now live. This release is in accordance with our adoption of biannual <a href="https://www.openssl-library.org/policies/general/release-policy">time-based releases</a>. As this is a beta release, we consider this to be a release candidate and as such encourage all OpenSSL users to build and test against this beta release and provide feedback. It represents the second step in our planned release of OpenSSL 3.3. To view the full 3.3 release schedule please refer to this <a href="https://openssl-library.org/post/2024-03-10-openssl-3.3-alpha-date/">blog</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL at FOSDEM 24]]></title>
            <link href="https://openssl-library.org/post/2024-03-19-fosdem-24/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-03-19-fosdem-24/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2024-03-28T06:00:00+00:00</published>
            <updated>2024-03-28T06:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>This year, we had the privilege of participating in FOSDEM for the first time. This offered us an opportunity to engage with the open source community at the conference, share our insights, and learn from the vast pool of knowledge that FOSDEM brings together.</p>
<p><img src="/images/blog/FOSDEM_24.jpg" alt="Photo of OpenSSL FOSDEM 2024 attendees"></p>
<p>FOSDEM, short for Free and Open Source Software Developers&rsquo; European Meeting, is an event that brings together thousands of open source developers, enthusiasts, and professionals from around the world. It&rsquo;s a festival of knowledge, with workshops, talks, and sessions covering a myriad of topics from software development and security to hardware innovation and beyond.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Upcoming Webinar: Writing Your First OpenSSL Application]]></title>
            <link href="https://openssl-library.org/post/2024-03-19-march-webinar/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-03-19-march-webinar/</id>
            
            
            <published>2024-03-22T09:00:00+00:00</published>
            <updated>2024-03-22T09:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are thrilled to announce our upcoming webinar, Writing Your First OpenSSL Application.</p>
<p>This webinar is designed to take you from an understanding of basic cryptography concepts to writing your first secure application using OpenSSL. It&rsquo;s the perfect starting point for anyone looking to dive into the world of secure application development. Here&rsquo;s what we&rsquo;ll cover:</p>
<ul>
<li>Define the use cases for which OpenSSL can be used</li>
<li>How to find documentation to learn how to use OpenSSL in applications</li>
<li>How to write applications using OpenSSL</li>
<li>How to test and verify functionality of OpenSSL applications</li>
<li>How to identify and fix bugs in OpenSSL applications</li>
<li>Q&amp;A Session: Have your questions answered by our OpenSSL experts. This is a great opportunity to clear up any doubts and gain additional insights.</li>
</ul>
<p>By the end of this presentation, the audience should be able to match their application needs to OpenSSL library features, find documentation to explain how to leverage those features, create applications using OpenSSL, and learn how to detect and understand errors that may arise.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.3 Alpha Release Live]]></title>
            <link href="https://openssl-library.org/post/2024-03-20-3.3-alpha-release/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-03-20-3.3-alpha-release/</id>
            
            
            <published>2024-03-22T07:00:00+00:00</published>
            <updated>2024-03-22T07:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The Alpha release of OpenSSL 3.3 is now live. This release is in accordance with our adoption of biannual time-based releases. As this is an alpha release, it is intended for development and testing purposes. It represents the first step in our planned release of OpenSSL 3.3. To view the full 3.3 release schedule please refer to this <a href="https://openssl-library.org/post/2024-03-10-openssl-3.3-alpha-date/">blog</a>.</p>
<p>OpenSSL 3.3 will feature the following new features:</p>
<ul>
<li>QUIC qlog diagnostic logging support</li>
<li>Support for the non-blocking polling of multiple QUIC connection or stream objects</li>
<li>Support for optimised generation of end-of-stream frames for QUIC connections</li>
<li>Support for disabling QUIC event processing when making API calls</li>
<li>Support for configuring QUIC idle timeout durations</li>
<li>Support for querying the size and utilisation of a QUIC stream’s write buffer</li>
<li>RCU lock infrastructure for performance enhancements</li>
<li>Support for RFC 9480 and RFC 9483 extensions to CMP</li>
<li>Ability to disable OpenSSL usage of atexit(3) at build time</li>
<li>Year 2038-compatible SSL_SESSION APIs</li>
<li>Ability to automatically derive Chinese Remainder Theorem (CRT) parameters when requested</li>
<li>Ability to ignore unknown algorithm names in TLS signature algorithm and group configuration strings</li>
<li>Ability to configure a TLS 1.3 server to prefer PSK-only key exchange during session resumption</li>
</ul>
<p>No further features or API changes are planned for 3.3 beyond those listed above. We will not be accepting any additional features for 3.3; any unmerged feature PRs will now be considered for 3.4.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.3 alpha release date announced]]></title>
            <link href="https://openssl-library.org/post/2024-03-10-openssl-3.3-alpha-date/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-03-10-openssl-3.3-alpha-date/</id>
            
            
            <published>2024-03-12T18:00:00+00:00</published>
            <updated>2024-03-12T18:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce our schedule for the April release of OpenSSL 3.3. In
accordance with our adoption of biannual time-based releases following the
release of OpenSSL 3.2, this will be our first time-based release.</p>
<p>The release schedule is as follows:</p>
<ul>
<li>
<p>An alpha of OpenSSL 3.3 will be made on 20 March 2024.</p>
</li>
<li>
<p>A beta of OpenSSL 3.3 will then be made on 29 March 2024.</p>
</li>
<li>
<p>The expected final release date for OpenSSL 3.3.0 is 10 April 2024.
Backup release dates are 17 April 2024 and 24 April 2024.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[NetApp and OpenSSL: Teaming Up for More Secure Internet]]></title>
            <link href="https://openssl-library.org/post/2024-02-08-netapp/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-02-08-netapp/</id>
            
            
            <published>2024-02-08T16:00:00+00:00</published>
            <updated>2024-02-08T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Exciting news in the world of online security! <a href="https://www.netapp.com/">NetApp</a>, an intelligent data infrastructure company, is now a Gold Sponsor of OpenSSL, showing their strong support for making the internet a safer place for everyone.</p>
<p>NetApp&rsquo;s sponsorship brings valuable resources to OpenSSL, enabling the project to accelerate development, conduct thorough security audits, and ensure ongoing maintenance and support. In return, NetApp gains access to cutting-edge cryptographic technologies, contributing to the enhancement of its own security solutions and reinforcing its position as a leader in data management.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Upcoming Getting Started with OpenSSL Webinar]]></title>
            <link href="https://openssl-library.org/post/2024-01-23-getting-started/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-01-23-getting-started/</id>
            
            
            <published>2024-01-23T16:00:00+00:00</published>
            <updated>2024-01-23T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>In the fast-paced world of cybersecurity, the ability to secure digital assets is paramount. We&rsquo;re excited to announce our upcoming webinar, &ldquo;Getting Started with OpenSSL,&rdquo; which is designed to provide attendee&rsquo;s with a solid foundation in using OpenSSL to enhance the security of their applications and systems. Join us for this webinar and learn all about OpenSSL&rsquo;s purpose, features, and components.</p>
<p><strong>Why Attend?</strong>
Empower Yourself: Gain practical skills to implement OpenSSL in your projects.
Community Engagement: Connect with a community of security-conscious individuals.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL FIPS provider 3.0.9 validated]]></title>
            <link href="https://openssl-library.org/post/2024-01-23-fips-309/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-01-23-fips-309/</id>
            
            
            <published>2024-01-23T08:00:00+00:00</published>
            <updated>2024-01-23T08:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL project is pleased to announce an update to its <a href="https://csrc.nist.gov/Projects/cryptographic-module-validation-program/fips-140-2">FIPS 140-2</a>
certificate <a href="https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/4282">#4282</a>.  The certificate now validates the FIPS
provider built from the 3.0.8 and 3.0.9 releases.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.1 FIPS Module has been submitted for validation]]></title>
            <link href="https://openssl-library.org/post/2024-01-04-openssl31-fips-submission/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2024-01-04-openssl31-fips-submission/</id>
            
            <author>
                        <name>OpenSSL Management Committee</name>
                    </author>
            <published>2024-01-04T07:00:00+00:00</published>
            <updated>2024-01-04T07:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>On 2023-12-29 we have submitted our FIPS 140-3 validation report to NIST&rsquo;s
<a href="https://csrc.nist.gov/projects/cryptographic-module-validation-program">Cryptographic Module Validation Program</a> (CMVP).</p>
<p>This in no way impacts our existing <a href="https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/4282">FIPS 140-2 certificate</a> which remains
valid and will be maintained until its sunset date in September 2026.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL's Official Youtube Channel]]></title>
            <link href="https://openssl-library.org/post/2023-12-21-youtube/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-12-21-youtube/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2023-12-21T10:00:00+00:00</published>
            <updated>2023-12-21T10:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are thrilled to announce a major leap forward in our efforts to connect with the community and share valuable insights—OpenSSL now has its own YouTube channel! As a significant milestone in our commitment to transparency, education, and open-source collaboration, this channel will serve as a hub for engaging content, tutorials, and updates straight from the heart of OpenSSL.</p>
<p><strong>What to Expect:</strong></p>
<p><strong>Tutorial Series:</strong>
Get ready for in-depth tutorials covering a wide range of topics, from OpenSSL basics to advanced usage scenarios. Whether you&rsquo;re a seasoned developer or just starting, our tutorials will cater to all skill levels.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 25 Year Anniversary T-Shirt Giveaway]]></title>
            <link href="https://openssl-library.org/post/2023-12-20-25_year_tshirt/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-12-20-25_year_tshirt/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2023-12-20T10:00:00+00:00</published>
            <updated>2023-12-20T10:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are thrilled to announce a special celebration in honor of OpenSSL&rsquo;s 25th anniversary! Two and a half decades of commitment to security, reliability, and open-source collaboration have made OpenSSL an indispensable tool in the world of digital communication.</p>
<p>To express our gratitude to the incredible community that has supported us throughout the years, we are hosting an exclusive T-Shirt Giveaway! The first 75 people to participate will receive a limited edition OpenSSL 25th-anniversary T-shirt as a token of our appreciation.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Providers Workshop: Authors Track]]></title>
            <link href="https://openssl-library.org/post/2023-12-05-provider_author_meeting/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-12-05-provider_author_meeting/</id>
            
            
            <published>2023-12-05T10:00:00+00:00</published>
            <updated>2023-12-05T10:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Part two of the OpenSSL Providers Workshop is next week! We have divided the workshop into two tracks the Users Track and the Authors Track. Please join us next week for part two of the workshop: Live OpenSSL Providers Workshop: Authors Track. As with the Users Track, we will be hosting two sessions of the Authors Track at different times to allow people from different time zones to be able to join our workshops live.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Providers Workshop: Users Track]]></title>
            <link href="https://openssl-library.org/post/2023-11-29-provider_meeting/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-11-29-provider_meeting/</id>
            
            
            <published>2023-11-29T10:00:00+00:00</published>
            <updated>2023-11-29T10:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The long anticipated OpenSSL Providers Workshop is finally here! We have divided the workshop into two tracks the Users Track and the Authors Track. Please join us next week for part one of the workshop: Live OpenSSL Providers Workshop: Users Track. Due to world wide interest, we will be hosting two sessions of the Users Track at different times to allow people from different time zones to be able to join our workshops live.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL announces final release of OpenSSL 3.2.0]]></title>
            <link href="https://openssl-library.org/post/2023-11-06-openssl32/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-11-06-openssl32/</id>
            
            
            <published>2023-11-23T14:00:00+00:00</published>
            <updated>2023-11-23T14:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce the immediate availability of OpenSSL 3.2.0. OpenSSL
3.2.0 is the first General Availability release of the OpenSSL 3.2 release line,
and incorporates a number of new features, including:</p>
<ul>
<li>Client-side QUIC support, including support for multiple streams (RFC 9000)</li>
<li>Certificate compression in TLS (RFC 8879), including support for zlib, zstd
and Brotli</li>
<li>Deterministic ECDSA (RFC 6979)</li>
<li>Support for Ed25519ctx, Ed25519ph and Ed448ph (RFC 8032)
in addition to existing support for Ed25519 and Ed448</li>
<li>AES-GCM-SIV (RFC 8452)</li>
<li>Argon2 (RFC 9106) and supporting thread pool functionality</li>
<li>HPKE (RFC 9180)</li>
<li>The ability to use raw public keys in TLS (RFC 7250)</li>
<li>TCP Fast Open (RFC 7413) support, where supported by the OS</li>
<li>Support for provider-based pluggable signature schemes in TLS,
enabling third-party post-quantum and other algorithm providers to use those
algorithms with TLS</li>
<li>Support for Brainpool curves in TLS 1.3</li>
<li>SM4-XTS</li>
<li>Support for using the Windows system certificate store as a source of trusted
root certificates. This is not yet enabled by default and must be activated
using an environment variable. This is likely to become enabled by default
in a future feature release.</li>
</ul>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.2 Final Release Postponed]]></title>
            <link href="https://openssl-library.org/post/2023-11-17-ossl-32-postponed/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-11-17-ossl-32-postponed/</id>
            
            
            <published>2023-11-17T10:00:00+00:00</published>
            <updated>2023-11-17T10:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>As part of the OpenSSL project&rsquo;s commitment to deliver a secure and high quality
cryptography toolkit, we routinely apply fuzzing to the OpenSSL codebase, which
searches automatically for potential bugs in upcoming OpenSSL releases. This
fuzzing process runs continuously and on an ongoing basis and as such, bugs can
be identified by our fuzzing infrastructure at any time.</p>
<p>Due to a small number of bugs which have been identified by the ongoing use of
fuzzing, the OpenSSL Project has made the decision to postpone the final release
of OpenSSL 3.2 by at least a week. While we have promptly fixed all bugs
presently identified by fuzzing, to ensure the quality of OpenSSL 3.2, we do not
intend to make the final release until all issues identified by fuzzing have
been addressed and no new issues are found for one week. As a result, we have
pushed the full release of OpenSSL 3.2 to the 23rd November 2023. Please stay
tuned to our blog for more details on the matter.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Expected OpenSSL 3.2 Release Date]]></title>
            <link href="https://openssl-library.org/post/2023-11-08-ossl_32_fr_blog1/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-11-08-ossl_32_fr_blog1/</id>
            
            
            <published>2023-11-08T13:00:00+00:00</published>
            <updated>2023-11-08T13:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Project is excited to announce that OpenSSL 3.2 is expected to be fully released on 16th November, 2023.</p>
<p>In the meantime the <a href="https://www.openssl-library.org/source/old">OpenSSL 3.2 Beta</a> is currently available. We encourage all OpenSSL users to build and test against the beta release and provide feedback.</p>
<p>OpenSSL 3.2 will be our last release before we transition to a <a href="https://openssl-library.org/post/2023-08-29-steps-forward/">time-based release schedule</a> on a 6-month cadence, with regular feature releases in October and April each year.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.2 Release Candidate]]></title>
            <link href="https://openssl-library.org/post/2023-10-26-ossl-32-beta/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-10-26-ossl-32-beta/</id>
            
            
            <published>2023-10-26T13:00:00+00:00</published>
            <updated>2023-10-26T13:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Project is excited to announce our first beta release of OpenSSL 3.2. We consider this to be a release candidate and as such encourage all OpenSSL users to build and test against this beta release and provide feedback.</p>
<p>The code for OpenSSL 3.2 is now functionally complete and at the time of the beta release there were no outstanding known regressions that need to be fixed before the final release. A lot of work has been going on over the last few months getting OpenSSL 3.2 ready for its final release and we want to send thanks to everyone who has helped us.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Adds Support for Raw Public Key (RFC7250)]]></title>
            <link href="https://openssl-library.org/post/2023-10-20-ossl-rpk/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-10-20-ossl-rpk/</id>
            
            
            <published>2023-10-20T13:00:00+00:00</published>
            <updated>2023-10-20T13:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p><a href="https://datatracker.ietf.org/doc/html/rfc7250">Raw Public Keys</a> have emerged as a component for securing communications between clients and servers. Raw Public Keys, as defined in RFC 7250, play a role in ensuring the confidentiality, integrity, and authenticity of data exchanged over the web. As a result OpenSSL will be adding <a href="https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set1_server_cert_type.html">support</a> for Raw Public Keys in the upcoming OpenSSL 3.2.</p>
<p>Raw Public Keys are a cryptographic mechanism used in <a href="https://en.wikipedia.org/wiki/Public_key_infrastructure">public key infrastructure</a> (PKI) systems. They are a way of representing a public key without the associated digital certificate, which contains additional information like the owner&rsquo;s identity, expiration date, and digital signatures from a certificate authority. This makes Raw Public Keys more lightweight and efficient, especially in resource-constrained environments.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Implementing HPKE in OpenSSL 3.2]]></title>
            <link href="https://openssl-library.org/post/2023-10-18-ossl-hpke/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-10-18-ossl-hpke/</id>
            
            
            <published>2023-10-18T13:00:00+00:00</published>
            <updated>2023-10-18T13:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The upcoming OpenSSL 3.2 will be implementing Hybrid Public Key Encryption (HPKE) into the library.</p>
<p><a href="https://datatracker.ietf.org/doc/rfc9180/">Hybrid Public Key Encryption</a> (HPKE) is a cryptographic protocol defined in <a href="https://datatracker.ietf.org/doc/rfc9180/">RFC 9180</a> (Request for Comments) that aims to provide a flexible and secure way to perform public key encryption in various scenarios. HPKE combines the security of public key encryption with the flexibility of using different key exchange methods and encryption schemes. This protocol is designed to be used in a wide range of applications, including securing communications over the internet and other networked environments.</p>
<p><a href="https://www.openssl.org/docs/manmaster/man3/OSSL_HPKE_CTX_new.html">Implementing HPKE in OpenSSL</a> will help ensure that your public key encryption solution is both effective and reliable for securing data in various applications and environments for the following reasons:</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL FIPS 140 Update]]></title>
            <link href="https://openssl-library.org/post/2023-10-12-osslfips-timeline/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-10-12-osslfips-timeline/</id>
            
            <author>
                        <name>Kajal Sapkota</name>
                    </author>
            <published>2023-10-12T13:00:00+00:00</published>
            <updated>2023-10-12T13:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>In the ever-evolving landscape of cybersecurity, staying ahead of potential threats is crucial. The OpenSSL project has been at the forefront of cryptographic security for decades, providing a robust toolkit that enables encryption, decryption, and other cryptographic functions. In the continuous pursuit of enhancing security and regulatory compliance, we want to share our updated ambitious FIPS (Federal Information Processing Standards) plans.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New OpenSSL Tutorials for OpenSSL 3.2 Release]]></title>
            <link href="https://openssl-library.org/post/2023-10-09-ossl32-tutorial/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-10-09-ossl32-tutorial/</id>
            
            
            <published>2023-10-09T12:00:00+00:00</published>
            <updated>2023-10-09T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We will be releasing a series of new tutorials in the upcoming OpenSSL 3.2 release to help new users of OpenSSL get a quick start on developing applications using the OpenSSL libraries. They will also be helpful to users wanting to try out the new client side QUIC capabilities.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.2 Alpha 2 released]]></title>
            <link href="https://openssl-library.org/post/2023-10-02-ossl32a2/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-10-02-ossl32a2/</id>
            
            
            <published>2023-10-03T16:00:00+00:00</published>
            <updated>2023-10-03T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL 3.2 Alpha 2 has recently been released.</p>
<p>Please see our <a href="https://openssl-library.org/post/2023-09-07-ossl32a1/">previous blog post</a>
for a list of all of the exciting new features that are contained in the
upcoming 3.2 release.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 1.1.1 End Of Life]]></title>
            <link href="https://openssl-library.org/post/2023-09-11-eol-111/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-09-11-eol-111/</id>
            
            <author>
                        <name>Paul Dale</name>
                    </author>
            <published>2023-09-11T00:00:00+00:00</published>
            <updated>2023-09-11T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL 1.1.1 series has reached its End of Life (EOL).
As such it will no longer receive publicly available security fixes.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL announces OpenSSL 3.2 Alpha 1]]></title>
            <link href="https://openssl-library.org/post/2023-09-07-ossl32a1/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-09-07-ossl32a1/</id>
            
            
            <published>2023-09-07T10:55:00+01:00</published>
            <updated>2023-09-07T10:55:00+01:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce the immediate availability of OpenSSL 3.2 Alpha 1.
This release incorporates a number of new features, most notably:</p>
<ul>
<li>Client-side QUIC support, including support for multiple streams (RFC 9000)</li>
<li>Certificate compression in TLS (RFC 8879), including support for zlib, zstd
and Brotli</li>
<li>Deterministic ECDSA (RFC 6979)</li>
<li>Support for Ed25519ctx, Ed25519ph, Ed448 and Ed448ph (RFC 8032)
in addition to existing support for Ed25519</li>
<li>AES-GCM-SIV (RFC 8452)</li>
<li>Argon2 (RFC 9106) and supporting thread pool functionality</li>
<li>HPKE (RFC 9180)</li>
<li>The ability to use raw public keys in TLS (RFC 7250)</li>
<li>TCP Fast Open (RFC 7413) support, where supported by the OS</li>
<li>Support for provider-based pluggable signature schemes in TLS,
enabling third-party post-quantum algorithm providers to use these algorithms
with TLS</li>
<li>Support for Brainpool curves in TLS 1.3</li>
<li>SM4-XTS</li>
<li>Support for using the Windows system certificate store as a source of trusted
root certificates. This is not yet enabled by default and must be activated
using an environment variable. This is likely to become enabled by default
in a future feature release.</li>
</ul>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL announces imminent release of OpenSSL 3.2 Alpha 1]]></title>
            <link href="https://openssl-library.org/post/2023-09-05-ossl32a1pre/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-09-05-ossl32a1pre/</id>
            
            
            <published>2023-09-05T11:35:00+01:00</published>
            <updated>2023-09-05T11:35:00+01:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL is pleased to announce the imminent release of OpenSSL 3.2 Alpha 1
on the 7th September 2023.</p>
<p>As this will be an alpha release, it is intended for development and testing
purposes. It represents the first step in our planned release of OpenSSL 3.2.</p>
<p>Depending on the outcome of the alpha process, we hope to make a beta release as
soon as two weeks after Alpha 1 is released. When we do move to beta, this will
represent a feature freeze. Therefore, no new feature PRs will be accepted into
the 3.2 branch after this.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Updates: A Few Steps Forward]]></title>
            <link href="https://openssl-library.org/post/2023-08-29-steps-forward/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-08-29-steps-forward/</id>
            
            <author>
                        <name>Anton Arapov</name>
                    </author>
            <published>2023-08-28T00:00:00+02:00</published>
            <updated>2023-08-28T00:00:00+02:00</updated>
            
            
            <content type="html"><![CDATA[<p>At OpenSSL, we&rsquo;re always learning and taking small steps, informed by both fresh
ideas and the feedback we receive. Today, we&rsquo;d like to share a couple of updates
we hope will make things clearer and more collaborative for our community.</p>
<p>These updates are part of our effort to align more closely with, and live by,
our <a href="https://www.openssl-mission.org">Mission and Values</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL statement on the recent Intel/AMD Downfall/Inception vulnerabilities]]></title>
            <link href="https://openssl-library.org/post/2023-08-09-downfall/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-08-09-downfall/</id>
            
            
            <published>2023-08-15T08:55:00+00:00</published>
            <updated>2023-08-15T08:55:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Last week marked the public announcement of the
<a href="https://downfall.page/">Downfall</a> vulnerability in Intel CPUs and the
<a href="https://comsec.ethz.ch/research/microarch/inception/">Inception</a> vulnerability
in AMD CPUs. Both of these are microarchitectural side-channel attacks allowing
an attacker with unprivileged execution on the same physical core as a victim
process to extract confidential information from that process.</p>
<p>This blog post provides information and advice for users of OpenSSL.
Specifically, it provides information on how users of OpenSSL may be affected by
these vulnerabilities, and advice for users of OpenSSL on mitigation strategies.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Face-to-face meetings: OTC and Committers]]></title>
            <link href="https://openssl-library.org/post/2023-07-18-f2f-otc-committers-summary/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-07-18-f2f-otc-committers-summary/</id>
            
            
            <published>2023-07-24T04:00:00+02:00</published>
            <updated>2023-07-24T04:00:00+02:00</updated>
            
            
            <content type="html"><![CDATA[<p>From June 19-21, OpenSSL had a face-to-face event in Brno, Czech Republic, for OTC members and contributors. The event provided a valuable platform for productive meetings and discussions. The gathering brought together prominent individuals from the OpenSSL community, fostering robust and enlightening exchanges. This event served as a crucial opportunity for introspection and future planning, encouraging open dialogue on various facets of the OpenSSL project.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Face-to-face meetings: OTC and Committers, Day 3]]></title>
            <link href="https://openssl-library.org/post/2023-07-18-f2f-otc-committers-day3/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-07-18-f2f-otc-committers-day3/</id>
            
            
            <published>2023-07-24T03:00:00+02:00</published>
            <updated>2023-07-24T03:00:00+02:00</updated>
            
            
            <content type="html"><![CDATA[<ul>
<li>Discussions were held about introducing a new time-based release policy for OpenSSL. This policy aims to improve the predictability of release schedules and content. Part of this discussion also touched on how to effectively plan and assess feature readiness before each release.</li>
<li>To enhance project management, the use of feature branches for more complex features was suggested. This idea was paired with the proposal to establish clearly defined criteria for the review and approval of code.</li>
<li>As part of improving decision-making within the project, dialogues were carried out on how to best select features for inclusion. The proposal to establish a review body, focused on making these decisions and prioritizing features, was also put forward.</li>
<li>Inspired by Apache&rsquo;s practices, improvements to the existing security policy were considered and discussed.</li>
<li>As part of addressing the project&rsquo;s technical debt, suggestions were made to discuss infallible locking and mandatory atomics. The goal was to streamline locking mechanisms and reduce code complexity.</li>
<li>Tomas Mraz and Dmitry Belyavsky held personal sessions where they discussed different approaches. Tomas delved into the approach of using decoupled low-level crypto libraries, while Belyavsky considered the potential for incorporating more pluggable elements within OpenSSL.</li>
<li>Richard Levitte highlighted several areas of technical debt that need addressing. These included issues with composite algorithm names, the functionality of Password-Based Encryption (PBE), and AlgorithmIdentifier parameters. He also proposed potential solutions to these identified issues.</li>
</ul>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Face-to-face meetings: OTC and Committers, Day 2]]></title>
            <link href="https://openssl-library.org/post/2023-07-18-f2f-otc-committers-day2/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-07-18-f2f-otc-committers-day2/</id>
            
            
            <published>2023-07-24T02:00:00+02:00</published>
            <updated>2023-07-24T02:00:00+02:00</updated>
            
            
            <content type="html"><![CDATA[<ul>
<li>The OpenSSL project has some performance issues. These need to be addressed by setting performance standards and testing before making changes. The team has agreed to prioritize this process.</li>
<li>Technical debt is another problem that needs to be dealt with. The proposed solutions are:
<ul>
<li>Setting performance targets.</li>
<li>Improving inefficient data structures.</li>
</ul>
</li>
<li>The team also discussed ways to improve engagement with the community, including:
<ul>
<li>Updating the current outdated communication channels.</li>
<li>Revamping the website.</li>
<li>Creating a separate space for user queries and software issues.</li>
<li>Starting to use GitHub Discussions for better communication.</li>
</ul>
</li>
<li>Supporting different OpenSSL versions poses challenges. The team also discussed how to manage Long Term Support (LTS) releases.</li>
<li>When talking about the QUIC protocol, several points were emphasized:
<ul>
<li>Its development is crucial.</li>
<li>Features need to be prioritized.</li>
<li>It&rsquo;s important to gather feedback early.</li>
<li>There was agreement to turn on QUIC by default in the next release.</li>
</ul>
</li>
<li>Nicola Tuveri pointed out that the BIGNUM issue needs to be addressed. He suggested setting aside dedicated resources to work on it.</li>
<li>Code reviews are essential for maintaining the quality of the project. Documentation should be easy to understand and useful for users. The team stressed its importance.</li>
<li>The error API has some problems. These were discussed along with potential solutions.</li>
</ul>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Face-to-face meetings: OTC and Committers, Day 1]]></title>
            <link href="https://openssl-library.org/post/2023-07-18-f2f-otc-committers-day1/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-07-18-f2f-otc-committers-day1/</id>
            
            
            <published>2023-07-24T01:00:00+02:00</published>
            <updated>2023-07-24T01:00:00+02:00</updated>
            
            
            <content type="html"><![CDATA[<ul>
<li>The OTC retrospective highlighted the need for diversity and improved communication.
<ul>
<li>A proposal for a Special Interest Group (SiG) model was made.</li>
<li>The necessity for regular communication with communities was identified.</li>
<li>A need for reevaluation of membership criteria was highlighted.</li>
</ul>
</li>
<li>The team acknowledged the presence of technical debt in OpenSSL. Challenges like code redundancy and inconsistent APIs were noted within OpenSSL. Refactoring was seen as a potential solution to these OpenSSL challenges.</li>
<li>Updates and improvements to the Certificate Management Protocol (CMP) were discussed. Focus was placed on interoperability and testing within the CMP.</li>
<li>Red Hat engineers shared their journey towards FIPS compliance. Their approach to security vulnerabilities was discussed.</li>
<li>Solutions for managing parameters and configurations were examined.</li>
<li>The challenge of accessing entropy sources was discussed. A proposition to enhance randomness providers was made.</li>
<li>The implementation of Post-Quantum Cryptography was also discussed. Focus was put on compatibility between OQS and OpenSSL in the future.</li>
<li>Red Hat presented several significant issues, including confirmed bugs. There was also a discussion on features needing careful consideration by Red Hat.</li>
<li>The experience of writing a PKCS#11 provider emphasized the need for better documentation. The need for more supportive resources for writing a PKCS#11 provider was also discussed.</li>
</ul>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Who writes OpenSSL?]]></title>
            <link href="https://openssl-library.org/post/2023-07-17-who-writes-openssl/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-07-17-who-writes-openssl/</id>
            
            <author>
                        <name>Mark Cox</name>
                    </author>
            <published>2023-07-17T08:30:00+00:00</published>
            <updated>2023-07-17T08:30:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>For a meeting last week I wanted to show how much of OpenSSL is being written by people paid to do so by their employers, and how much was from individuals in their own time.  And it turns out most of OpenSSL is written by people paid to do so. This is crucial to understanding the critical role that corporations provide to Open Source projects such as OpenSSL.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL adopts Mission & Values Statement]]></title>
            <link href="https://openssl-library.org/post/2023-07-04-mission-adoption/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-07-04-mission-adoption/</id>
            
            <author>
                        <name>Tam Dale</name>
                    </author>
            <published>2023-07-04T08:00:00+00:00</published>
            <updated>2023-07-04T08:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>After extensive feedback from our communities, OpenSSL is pleased to announce that we have formally adopted the Mission and Values Statement, and will now be aligning our activities to support these.</p>
<p>You can view our new <a href="https://www.openssl.org/community/mission.html">Mission and Values Statment here</a>.</p>
<p>We would like to extend our sincere thanks to all those who provided feedback to us. We have reviewed all the comments and responses, which showed that a clear majority (around 70%) agreed on OpenSSL adopting the Mission and Values Statement. It was really beneficial to hear from our various communities and we will continue to seek out your feedback in the future.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 1.1.1 End Of Life Approaching]]></title>
            <link href="https://openssl-library.org/post/2023-06-15-1.1.1-eol-reminder/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-06-15-1.1.1-eol-reminder/</id>
            
            <author>
                        <name>Tam Dale</name>
                    </author>
            <published>2023-06-15T05:00:00+00:00</published>
            <updated>2023-06-15T05:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL 1.1.1 series will reach End of Life (EOL) on 11th September 2023. Users of OpenSSL 1.1.1 should consider their options and plan any actions they might need to take.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Rebranded OpenSSL FIPS certificates issued]]></title>
            <link href="https://openssl-library.org/post/2023-06-01-fips-rebranded/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-06-01-fips-rebranded/</id>
            
            <author>
                        <name>Paul Dale</name>
                    </author>
            <published>2023-06-01T01:00:00+00:00</published>
            <updated>2023-06-01T01:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL project is pleased to announce that the first of the rebranded
<a href="https://csrc.nist.gov/Projects/cryptographic-module-validation-program/fips-140-2">FIPS 140-2</a> certificates, available exclusively to our Premium Support
Customers, have been officially issued by the <a href="https://csrc.nist.gov/projects/cryptographic-module-validation-program">CMVP</a>.  With this
significant milestone achieved, we anticipate a smooth and ongoing
rollout of the remaining and future rebrandings.  If your company desires
a rebranded FIPS 140-2 validation certificate bearing your organisation&rsquo;s
name, obtaining one is a straightforward task: simply secure a
<a href="https://openssl-corporation.org/support/#premium">premium support contract</a> with the project and ask for a rebranded
certificate.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL FIPS provider 3.0.8 validated]]></title>
            <link href="https://openssl-library.org/post/2023-05-29-fips-3-0-8/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-05-29-fips-3-0-8/</id>
            
            
            <published>2023-05-29T00:00:00+00:00</published>
            <updated>2023-05-29T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL project is pleased to announce a major update to its <a href="https://csrc.nist.gov/Projects/cryptographic-module-validation-program/fips-140-2">FIPS 140-2</a>
certificate <a href="https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/4282">#4282</a>.  The certificate now validates the FIPS
provider built from the 3.0.8 release.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL extends feedback on draft mission & values statement]]></title>
            <link href="https://openssl-library.org/post/2023-05-04-mission-extension/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-05-04-mission-extension/</id>
            
            <author>
                        <name>Tam Dale</name>
                    </author>
            <published>2023-05-04T09:50:00+10:00</published>
            <updated>2023-05-04T09:50:00+10:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL would like to thank everyone who has provided feedback on our draft
mission &amp; values statement.
The response has been great, and the feedback is really important to us. We are
working through those responses.</p>
<p>We&rsquo;d like to get even more feedback so we are extending the response
period until 19th May 2023.
If you haven&rsquo;t already provided feedback to us, please do so by:</p>
<ul>
<li><a href="https://forms.gle/yjdpFnSpaLXBMTsf9">Filling in this feedback form</a>, or</li>
<li>Emailing your feedback to <a href="mailto:feedback@openssl.org">feedback@openssl.org</a></li>
</ul>
<p>As a small incentive we will be randomly selecting 10 responders out of
everyone who has provided feedback and the lucky ones will receive an OpenSSL
T-shirt. (Yes this includes those who have already responded to us).</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL seeks feedback on draft mission & values statement]]></title>
            <link href="https://openssl-library.org/post/2023-03-31-mission/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-03-31-mission/</id>
            
            <author>
                        <name>Hugo Landau</name>
                    </author>
            <published>2023-03-31T08:31:00+00:00</published>
            <updated>2023-03-31T08:31:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Following the successful OpenSSL 2023 <a href="/blog/2023/03/31/f2f/">face-to-face conference</a>, OpenSSL has produced a draft mission &amp;
values statement. Once finalised, we intend to realign all activities of the
project to ensure they reflect our agreed mission and values. Before doing so
however, we would like to obtain feedback on this statement from the public, to
ensure it represents all of our communities. By offering us your feedback, you
will help us to ensure the OpenSSL project is run in a way that reflects the
values of all of our users.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 1.1.1 End Of Life]]></title>
            <link href="https://openssl-library.org/post/2023-03-28-1.1.1-eol/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-03-28-1.1.1-eol/</id>
            
            
            <published>2023-03-28T11:00:00+00:00</published>
            <updated>2023-03-28T11:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are now less than 6 months away from the End Of Life (EOL) date for the
OpenSSL 1.1.1 series. Users of OpenSSL 1.1.1 should consider their options and
plan any actions they might need to take.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL FIPS Update and Expansion of Rebranding Offer]]></title>
            <link href="https://openssl-library.org/post/2023-03-15-fips-rebranding/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-03-15-fips-rebranding/</id>
            
            <author>
                        <name>Paul Dale</name>
                    </author>
            <published>2023-03-15T08:00:00+00:00</published>
            <updated>2023-03-15T08:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are thrilled to inform you that the complimentary FIPS rebranding
service for our premium support customers has been extended.  As part
of this non-contractual benefit, premium support customers are entitled
to one rebranding of any of our FIPS provider certificates per year,
completely free of charge.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.1 Final Release]]></title>
            <link href="https://openssl-library.org/post/2023-03-07-openssl3.1release/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2023-03-07-openssl3.1release/</id>
            
            
            <published>2023-03-07T12:00:00+00:00</published>
            <updated>2023-03-07T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We are pleased to announce that the forthcoming OpenSSL 3.1 release is to be
made available on 14th March 2023.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.1 Release Candidate]]></title>
            <link href="https://openssl-library.org/post/2022-12-21-openssl3.1beta/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-12-21-openssl3.1beta/</id>
            
            
            <published>2022-12-21T11:00:00+00:00</published>
            <updated>2022-12-21T11:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee (OMC) and the OpenSSL Technical Committee
(OTC) are glad to announce our first beta release of OpenSSL 3.1. We consider
this to be a release candidate and as such encourage all OpenSSL users to build
and test against this beta release and provide feedback.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.1 alpha release]]></title>
            <link href="https://openssl-library.org/post/2022-11-30-openssl3.1alpha/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-11-30-openssl3.1alpha/</id>
            
            
            <published>2022-12-02T08:00:00+00:00</published>
            <updated>2022-12-02T08:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee and the OpenSSL Technical Committee are glad to
announce the alpha release of OpenSSL 3.1.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[CVE-2022-3786 and CVE-2022-3602: X.509 Email address buffer overflows]]></title>
            <link href="https://openssl-library.org/post/2022-11-01-email-address-overflows/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-11-01-email-address-overflows/</id>
            
            
            <published>2022-11-01T15:00:00+00:00</published>
            <updated>2022-11-01T15:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Today we published an
<a href="https://www.openssl.org/news/secadv/20221101.txt">advisory</a> about CVE-2022-3786
(&ldquo;X.509 Email Address Variable Length Buffer Overflow&rdquo;) and
CVE-2022-3602 (&ldquo;X.509 Email Address 4-byte Buffer Overflow&rdquo;).</p>
<p>Please read the advisory for specific details about these CVEs and how they
might impact you. This blog post will address some common questions that we
expect to be asked about these CVEs.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Configuring supported TLS groups in OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2022-10-21-tls-groups-configuration/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-10-21-tls-groups-configuration/</id>
            
            
            <published>2022-10-21T11:00:00+00:00</published>
            <updated>2022-10-21T11:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The configuration of supported groups in TLS servers is important to limit
the resource consumption of the TLS handshakes performed by the server.
This blog post should give system administrators a few useful hints
on how to configure the OpenSSL library and two of the most used
open source HTTP servers which use the OpenSSL library for supporting
the HTTPS protocol.</p>
<p>UPDATE: The post was updated to mention the new CVE-2022-40735 vulnerability.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[RIPEMD160 and the legacy provider]]></title>
            <link href="https://openssl-library.org/post/2022-10-17-rmd160-and-the-legacy-provider/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-10-17-rmd160-and-the-legacy-provider/</id>
            
            
            <published>2022-10-18T09:07:50+02:00</published>
            <updated>2022-10-18T09:07:50+02:00</updated>
            
            
            <content type="html"><![CDATA[<p>With the release of OpenSSL 3.0 and the new provider architecture,
some algorithms that were considered legacy by the OpenSSL team at the
time were moved to the <code>legacy</code> provider, to be loaded <em>optionally</em> by
those wishing to still use any of said algorithms.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[FIPS 140-3 Plans]]></title>
            <link href="https://openssl-library.org/post/2022-09-30-fips-140-3/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-09-30-fips-140-3/</id>
            
            <author>
                        <name>OpenSSL Management Committee</name>
                    </author>
            <published>2022-09-30T10:00:00+00:00</published>
            <updated>2022-09-30T10:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee (OMC) on behalf of the OpenSSL Project
is pleased to announce that the project is partnering with <a href="https://keypair.us/">KeyPair Consulting</a>
and <a href="https://www.acumensecurity.net/">Acumen Security</a> to validate OpenSSL to meet the requirements
of the <a href="https://csrc.nist.gov/publications/detail/fips/140/3/final">FIPS 140-3</a> standard.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Presentation at ICMC22 Conference]]></title>
            <link href="https://openssl-library.org/post/2022-09-20-openssl-presentation-at-icmc/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-09-20-openssl-presentation-at-icmc/</id>
            
            <author>
                        <name>Martin Koci</name>
                    </author>
            <published>2022-09-21T12:00:00+00:00</published>
            <updated>2022-09-21T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>After 2 years of forced covid break, OpenSSL once again presented at the ICMC22
conference. The conference was a very pleasant meet-up of the community around
cryptography and cryptographic modules. There were a lot of insights, feedback,
and discussions around IT security. OpenSSL gave a talk on the Current Status of
OpenSSL.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 FIPS 140-2 Free Rebranding Offer]]></title>
            <link href="https://openssl-library.org/post/2022-09-14-fips-rebranding/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-09-14-fips-rebranding/</id>
            
            <author>
                        <name>OpenSSL Management Committee</name>
                    </author>
            <published>2022-09-14T12:00:00+00:00</published>
            <updated>2022-09-14T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>OpenSSL is celebrating our FIPS 140-2 certification with a special offer for
our Premium Support Customers by providing access to a free rebranding of the
OpenSSL 3.0 FIPS 140-2 certificate.</p>
<p>See FIPS 140-2 Certificate
<a href="https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/4282">here</a></p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL FIPS 140-2 validation certificate issued]]></title>
            <link href="https://openssl-library.org/post/2022-08-24-fips-validation-certificate-issued/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-08-24-fips-validation-certificate-issued/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2022-08-24T12:00:00+00:00</published>
            <updated>2022-08-24T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee on behalf of the OpenSSL Project is pleased to
announce that the OpenSSL 3.0 FIPS Provider has had its FIPS 140-2 validation
<a href="https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/4282">certificate</a>
issued by NIST &amp; CSE.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Spectre and Meltdown Attacks against OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2022-05-13-spectre-meltdown/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2022-05-13-spectre-meltdown/</id>
            
            
            <published>2022-05-13T00:00:00+00:00</published>
            <updated>2022-05-13T00:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Technical Committee (OTC) was recently made aware of
several potential attacks against the OpenSSL libraries which might
permit information leakage via the <a href="https://meltdownattack.com/">Spectre</a> attack.<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>  Although there
are currently no known exploits for the Spectre attacks identified,
it is plausible that some of them might be exploitable.</p>
<p>Local side channel attacks, such as these, are outside the scope of
our <a href="https://openssl-library.org/policies/general/security-policy/">security policy</a>, however the project generally does introduce
mitigations when they are discovered.  In this case, the OTC has decided
that these attacks will <strong>not</strong> be mitigated by changes to the OpenSSL
code base.  The full reasoning behind this is given below.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Starting the QUIC design]]></title>
            <link href="https://openssl-library.org/post/2021-12-03-starting-the-quic-design/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2021-12-03-starting-the-quic-design/</id>
            
            
            <published>2021-12-03T12:00:00+00:00</published>
            <updated>2021-12-03T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OTC recently agreed a new design process that needs to be followed for
future releases. See
<a href="https://github.com/openssl/technical-policies/blob/master/policies/design-process.md">here</a>
for details. Moving forward designs for significant features should be captured
and stored alongside the documentation in our main source code repository and
updated if necessary during the development process.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Update]]></title>
            <link href="https://openssl-library.org/post/2021-11-25-openssl-update/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2021-11-25-openssl-update/</id>
            
            
            <published>2021-11-25T14:00:00+00:00</published>
            <updated>2021-11-25T14:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL community is a diverse group, ranging from those that use
applications that depend on OpenSSL (effectively end-users) to operating system
distributions, application developers, embedded devices, layered security
libraries, and cryptographic algorithm and protocol researchers. Each of these
subsets of our community have different needs and different priorities.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Making changes to OpenSSL technical policies more open]]></title>
            <link href="https://openssl-library.org/post/2021-11-12-technical-policies/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2021-11-12-technical-policies/</id>
            
            
            <published>2021-11-12T10:00:00+00:00</published>
            <updated>2021-11-12T10:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Technical Committee decided to have a more formal but also a more
open process on establishing changes to OpenSSL technical policies and
other technical decisions made by the OpenSSL Technical Committee. We would
like to invite the broad community of OpenSSL developers and users to
participate in our decision making process.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Community Maintainers: How to get support for your platform]]></title>
            <link href="https://openssl-library.org/post/2021-11-08-community-maintainers/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2021-11-08-community-maintainers/</id>
            
            
            <published>2021-11-08T08:15:00+00:00</published>
            <updated>2021-11-08T08:15:00+00:00</updated>
            
            
            <content type="html"><![CDATA[]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 FIPS Module has been submitted for validation]]></title>
            <link href="https://openssl-library.org/post/2021-09-22-openssl3-fips-submission/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2021-09-22-openssl3-fips-submission/</id>
            
            
            <published>2021-09-22T18:00:00+00:00</published>
            <updated>2021-09-22T18:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Following on from the recent <a href="https://openssl-library.org/post/2021-09-06-openssl3.final/">announcement</a>
that OpenSSL 3.0 has been released, we have now also submitted our FIPS 140-2
validation report to NIST&rsquo;s Cryptographic Module Validation Program (CMVP).</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Old Let's Encrypt root certificate expiration and OpenSSL 1.0.2]]></title>
            <link href="https://openssl-library.org/post/2021-09-13-letsencryptrootcertexpire/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2021-09-13-letsencryptrootcertexpire/</id>
            
            
            <published>2021-09-13T08:00:00+00:00</published>
            <updated>2021-09-13T08:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The currently recommended certificate chain as presented to Let&rsquo;s Encrypt ACME
clients when new certificates are issued contains an intermediate certificate
(ISRG Root X1) that is signed by an old DST Root CA X3 certificate that expires
on 2021-09-30. In some cases the OpenSSL 1.0.2 version will regard the
certificates issued by the Let&rsquo;s Encrypt CA as having an expired trust chain.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 has been released!]]></title>
            <link href="https://openssl-library.org/post/2021-09-06-openssl3.final/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2021-09-06-openssl3.final/</id>
            
            
            <published>2021-09-07T14:00:00+00:00</published>
            <updated>2021-09-07T14:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>After 3 years of development work, 17 alpha releases, 2 beta releases, over
7,500 commits and contributions from over 350 different authors we have finally
released OpenSSL 3.0! In addition to this there has been a large number of
contributions from our users who have been actively working with the pre-release
versions to test it, make sure it works in the real world and with a large array
of different applications and reporting their results. I am also delighted to
note that there has been a 94% increase in the amount of documentation that we
have since OpenSSL 1.1.1 and an (adjusted) increase in the &ldquo;lines of code&rdquo; in
our tests of 54%. There has never been a better demonstration of what an active
and enthusiastic community we have than when you look at the statistics for the
OpenSSL 3.0 development work. Thanks to everyone who has taken part - no matter
how small that part was.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 Release Candidate]]></title>
            <link href="https://openssl-library.org/post/2021-06-17-openssl3.0releasecandidate/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2021-06-17-openssl3.0releasecandidate/</id>
            
            
            <published>2021-06-17T14:20:00+00:00</published>
            <updated>2021-06-17T14:20:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee (OMC) and the OpenSSL Technical Committee
(OTC) are glad to announce our first beta release of OpenSSL 3.0. We consider
this to be a release candidate and as such encourage all OpenSSL users to build
and test against this beta release and provide feedback.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 alpha7 release]]></title>
            <link href="https://openssl-library.org/post/2020-10-20-openssl3.0alpha7/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2020-10-20-openssl3.0alpha7/</id>
            
            
            <published>2020-10-20T19:00:00+00:00</published>
            <updated>2020-10-20T19:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee (OMC) and the OpenSSL Technical Committee
(OTC) are glad to announce the seventh alpha release of OpenSSL 3.0.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 alpha4 release]]></title>
            <link href="https://openssl-library.org/post/2020-06-25-openssl3.0alpha4/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2020-06-25-openssl3.0alpha4/</id>
            
            
            <published>2020-06-25T19:00:00+00:00</published>
            <updated>2020-06-25T19:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee and the OpenSSL Technical Committee are glad to
announce the fourth alpha release of OpenSSL 3.0.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 alpha3 release]]></title>
            <link href="https://openssl-library.org/post/2020-06-05-openssl3.0alpha3/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2020-06-05-openssl3.0alpha3/</id>
            
            
            <published>2020-06-05T12:00:00+00:00</published>
            <updated>2020-06-05T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee and the OpenSSL Technical Committee are glad to
announce the third alpha release of OpenSSL 3.0.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 alpha2 release]]></title>
            <link href="https://openssl-library.org/post/2020-05-18-openssl3.0alpha2/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2020-05-18-openssl3.0alpha2/</id>
            
            
            <published>2020-05-16T12:00:00+00:00</published>
            <updated>2020-05-16T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee and the OpenSSL Technical Committee are glad to
announce the second alpha release of OpenSSL 3.0.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Security Policy Update on prenotifications]]></title>
            <link href="https://openssl-library.org/post/2020-05-12-security-prenotifications/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2020-05-12-security-prenotifications/</id>
            
            <author>
                        <name>Mark Cox</name>
                    </author>
            <published>2020-05-12T09:00:00+00:00</published>
            <updated>2020-05-12T09:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We&rsquo;re planning to extend who we prenotify of any future High and Critical
security issues.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 alpha1 release]]></title>
            <link href="https://openssl-library.org/post/2020-04-23-openssl3.0alpha1/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2020-04-23-openssl3.0alpha1/</id>
            
            
            <published>2020-04-23T12:00:00+00:00</published>
            <updated>2020-04-23T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee and the OpenSSL Technical Committee are glad to
announce the first alpha release of OpenSSL 3.0.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[QUIC and OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2020-02-13-quic-and-openssl/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2020-02-13-quic-and-openssl/</id>
            
            
            <published>2020-02-17T12:00:00+00:00</published>
            <updated>2020-02-17T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>QUIC is a new protocol which the IETF talks about as
<a href="https://datatracker.ietf.org/doc/draft-ietf-quic-transport/">A UDP-Based Multiplexed and Secure Transport</a>,
and has attracted a lot of attention lately.  The OpenSSL Management
Committee (OMC) have followed the development with interest, and we feel that we
owe it to the community to say where we stand on this, and on the inclusion of
support for this protocol in our libraries.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Update on 3.0 Development, FIPS and 1.0.2 EOL]]></title>
            <link href="https://openssl-library.org/post/2019-11-07-3.0-update/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2019-11-07-3.0-update/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2019-11-07T16:00:00+00:00</published>
            <updated>2019-11-07T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We have previously talked about our plans for OpenSSL 3.0 and FIPS support
<a href="https://openssl-library.org/post/2019-02-13-fips-update/">here</a>. This blog
post will give an update about what has been happening since then.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Face to Face: Committer's Day]]></title>
            <link href="https://openssl-library.org/post/2019-05-23-f2f-committers-day/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2019-05-23-f2f-committers-day/</id>
            
            <author>
                        <name>Matthias St. Pierre</name>
                    </author>
            <published>2019-05-23T17:15:00+00:00</published>
            <updated>2019-05-23T17:15:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>At the Face to Face meeting held on the occasion of the <a href="https://icmconference.org">ICMC19 Conference</a>
in Vancouver, a novelty was introduced: For the last day of the meeting all
committers were invited to participate, either personally or remotely via video conference.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New Committers]]></title>
            <link href="https://openssl-library.org/post/2019-05-20-committers/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2019-05-20-committers/</id>
            
            
            <published>2019-05-20T12:00:00+00:00</published>
            <updated>2019-05-20T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Following on from our additions to the committers
<a href="https://openssl-library.org/post/2018-08-22-updates/">last year</a>,
the <a href="https://www.openssl.org/community/omc.html">OpenSSL Management Committee</a> has now added four new
<a href="https://www.openssl.org/community/committers.html">Committers</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 3.0 and FIPS update]]></title>
            <link href="https://openssl-library.org/post/2019-02-13-fips-update/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2019-02-13-fips-update/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2019-02-13T10:30:00+00:00</published>
            <updated>2019-02-13T10:30:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>As <a href="https://openssl-library.org/post/2018-09-25-fips/">mentioned</a> in a previous
blog post, OpenSSL team members met with various representatives of the FIPS
sponsor organisations back in September last year to discuss design and planning
for the new FIPS module development project.</p>
<p>Since then there has been much design work taking place and we are now able to
publish the draft design documentation. You can read about how we see the longer
term architecture of OpenSSL changing in the future
<a href="https://www.openssl.org/docs/OpenSSLStrategicArchitecture.html">here</a> and you
can read about our specific plans for OpenSSL 3.0 (our next release which will
include a FIPS validated module)
<a href="https://www.openssl.org/docs/OpenSSL300Design.html">here</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Celebrating 20 years of OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2018-12-20-20years/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-12-20-20years/</id>
            
            <author>
                        <name>Mark Cox</name>
                    </author>
            <published>2018-12-20T12:00:00+00:00</published>
            <updated>2018-12-20T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>20 years ago, on the 23rd December 1998, the first version of OpenSSL was
released. OpenSSL was not the original name planned for the project but it was
changed over just a few hours before the site went live.  Let’s take a look at
some of the early history of OpenSSL as some of the background has not been
documented before.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[The Holy Hand Grenade of Antioch]]></title>
            <link href="https://openssl-library.org/post/2018-09-25-version/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-09-25-version/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2018-11-28T12:00:00+00:00</published>
            <updated>2018-11-28T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee has been looking at the versioning scheme that
is currently in use. Over the years we&rsquo;ve received plenty of feedback about the
&ldquo;uniqueness&rdquo; of this scheme, and it does cause some confusion for some users. We
would like to adopt a more typical version numbering approach.</p>
<p>The current versioning scheme has this format:</p>
<p>MAJOR.MINOR.FIX[PATCH]</p>
<p>The new scheme will have this format:</p>
<p>MAJOR.MINOR.PATCH</p>
<p>In practical terms our &ldquo;letter&rdquo; patch releases become patch numbers and &ldquo;fix&rdquo;
is dropped from the concept. In future, API/ABI compatibility will only be
guaranteed for the same MAJOR version number. Previously we guaranteed
API/ABI compatibility across the same MAJOR.MINOR combination. This more closely
aligns with the expectations of users who are familiar with semantic versioning.
We are not at this stage directly adopting semantic versioning because it would
mean changing our current LTS policies and practices.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[FIPS 140-2: Forward progress]]></title>
            <link href="https://openssl-library.org/post/2018-09-25-fips/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-09-25-fips/</id>
            
            <author>
                        <name>Tim Hudson</name>
                    </author>
            <published>2018-09-25T12:00:00+00:00</published>
            <updated>2018-09-25T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL Management Committee (OMC) on behalf of the OpenSSL Project would
like to formally express its thanks to the following organisations
for agreeing to sponsor the next
FIPS validation effort: Akamai Technologies, Blue Cedar, NetApp, Oracle, VMware.</p>
<p>Four weeks ago, the OpenSSL team gathered with many of the organisations
sponsoring the next FIPS module for a face-to-face meeting in Brisbane,
Australia.</p>
<p>We got a great deal accomplished during that week.  Having most of
the fips-sponsor organisations in the same location helps ensure that
we are all on the same page for the decisions we need to make going forward.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL 1.1.1 is released]]></title>
            <link href="https://openssl-library.org/post/2018-09-11-release111/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-09-11-release111/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2018-09-11T12:00:00+00:00</published>
            <updated>2018-09-11T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>After two years of work we are excited to be releasing our latest version today -
OpenSSL 1.1.1. This is also our new Long Term Support (LTS) version and so we
are committing to support it for at least five years.</p>
<p>OpenSSL 1.1.1 has been a huge team effort with nearly 5000 commits having been
made from over 200 individual contributors since the release of OpenSSL 1.1.0.
These statistics just illustrate the amazing vitality and diversity of the
OpenSSL community. The contributions didn&rsquo;t just come in the form of commits
though. There has been a great deal of interest in this new version so thanks
needs to be extended to the large number of users who have downloaded the beta
releases to test them out and report bugs.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New OMC member and new Committers]]></title>
            <link href="https://openssl-library.org/post/2018-08-22-updates/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-08-22-updates/</id>
            
            
            <published>2018-08-22T12:00:00+00:00</published>
            <updated>2018-08-22T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We first announced <a href="https://openssl-library.org/post/2017-06-15-committers/">last year</a>
the <a href="https://www.openssl.org/community/omc.html">OpenSSL Management Committee</a>
and separate <a href="https://www.openssl.org/community/committers.html">Committers</a> groups
aimed at enabling greater involvement from the community.</p>
<p>We have now added a new OMC member and two new committers.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New LTS Release]]></title>
            <link href="https://openssl-library.org/post/2018-05-18-new-lts/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-05-18-new-lts/</id>
            
            <author>
                        <name>Rich Salz</name>
                    </author>
            <published>2018-05-18T06:00:00+00:00</published>
            <updated>2018-05-18T06:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Back around the end of 2014 we posted our
<a href="https://www.openssl.org/policies/releasestrat.html">release strategy</a>. This
was the first time we defined support timelines for our releases, and added
the concept of an LTS (long-term support) release.  At our OMC meeting
earlier this month, we picked our next LTS release.  This post walks through
that announcement, and tries to explain all the implications of it.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Changing the guiding principles in our Security Policy]]></title>
            <link href="https://openssl-library.org/post/2018-05-16-security-policy/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-05-16-security-policy/</id>
            
            
            <published>2018-05-16T21:00:00+00:00</published>
            <updated>2018-05-16T21:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<blockquote>
<p>&ldquo;That we remove &ldquo;We strongly believe that the right to advance patches/info
should not be based in any way on paid membership to some forum.  You can not
pay us to get security patches in advance.&rdquo; from the security policy and Mark
posts a blog entry to explain the change including that we have no
current such service.&rdquo;</p></blockquote>
<p>At the OpenSSL Management Committee meeting earlier this month we <a href="https://mta.openssl.org/pipermail/openssl-project/2018-May/000724.html">passed the vote above</a> to remove a section our <a href="https://openssl-library.org/policies/general/security-policy/">security policy</a>.  Part of that vote
was that I would write this blog post to explain why we made this change.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Seeking Last Group of Contributors]]></title>
            <link href="https://openssl-library.org/post/2018-03-01-last-license/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-03-01-last-license/</id>
            
            <author>
                        <name>Rich Salz</name>
                    </author>
            <published>2018-03-01T06:00:00+00:00</published>
            <updated>2018-03-01T06:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The following is a press release that we just put out about how finishing
off our relicensing effort.  For the impatient, please see
<a href="https://license.openssl.org/trying-to-find">https://license.openssl.org/trying-to-find</a>
to help us find the last people; we want to change the license with our
next release, which is currently in Alpha, and tentatively set for May.</p>
<p>For background, you can see all posts in the
<a href="/tags/license">license tag</a>.</p>
<p>One copy of the press release is at
<a href="https://www.prnewswire.com/news-releases/openssl-seeking-last-group-of-contributors-300607162.html">https://www.prnewswire.com/news-releases/openssl-seeking-last-group-of-contributors-300607162.html</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Using TLS1.3 with OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2018-02-08-tlsv1.3/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-02-08-tlsv1.3/</id>
            
            
            <published>2018-02-08T12:00:00+01:00</published>
            <updated>2018-02-08T12:00:00+01:00</updated>
            
            
            <content type="html"><![CDATA[<p>Note: This is an outdated version of this blog post. This information is now
maintained in a wiki page. See
<a href="https://github.com/openssl/openssl/wiki/TLS1.3">here</a> for the latest version.</p>
<p>The forthcoming OpenSSL 1.1.1 release will include support for TLSv1.3. The new
release will be binary and API compatible with OpenSSL 1.1.0. In theory, if your
application supports OpenSSL 1.1.0, then all you need to do to upgrade is to drop
in the new version of OpenSSL when it becomes available and you will
automatically start being able to use TLSv1.3. However there are some issues
that application developers and deployers need to be aware of. In this blog post
I am going to cover some of those things.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Early access to security issues for support customers?]]></title>
            <link href="https://openssl-library.org/post/2018-02-07-early-access/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-02-07-early-access/</id>
            
            <author>
                        <name>Mark Cox</name>
                    </author>
            <published>2018-02-07T09:00:00+00:00</published>
            <updated>2018-02-07T09:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>At the <a href="https://openssl-library.org/post/2018-01-19-f2f-london/">face to face</a>
last year we discussed future funding models, and we are exploring a range of
possible options.  One suggestion raised was we could sell more support
contracts and give those support contract users patches for security issues in
advance.</p>
<p>But before we can even discuss this as an option we would have to change
our public stance.  Our security policy since 2014 has stated we would
not do this and currently reads:</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Another Face to Face: Email changes and crypto policy]]></title>
            <link href="https://openssl-library.org/post/2018-01-19-f2f-london/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-01-19-f2f-london/</id>
            
            <author>
                        <name>OpenSSL Management Committee</name>
                    </author>
            <published>2018-01-18T01:00:00+00:00</published>
            <updated>2018-01-18T01:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL OMC met last month for a two-day face-to-face meeting in London,
and like previous F2F meetings, most of the team was present and we addressed
a great many issues.  This blog posts talks about some of them,
and most of the others will get their own blog posts, or notices, later.
Red Hat graciously hosted us for the two days, and both Red Hat and Cryptsoft
covered the costs of their employees who attended.</p>
<p>One of the overall threads of the meeting was about increasing the
transparency of the project.  By default, everything should be done in
public.  We decided to try some major changes to email and such.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL wins the Levchin prize]]></title>
            <link href="https://openssl-library.org/post/2018-01-10-levchin/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2018-01-10-levchin/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2018-01-10T19:00:00+00:00</published>
            <updated>2018-01-10T19:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Today I have had great pleasure in attending the Real World Crypto 2018
conference in Zürich in order to receive the
<a href="http://levchinprize.com/">Levchin prize</a> on behalf of the OpenSSL team.</p>
<p>The Levchin prize for Real World Cryptography recognises up to two groups or
individuals each year  who have made significant advances in the practice of
cryptography and its use in real-world systems. This year one of the two
recipients is the OpenSSL team. The other recipient is
<a href="http://researcher.watson.ibm.com/researcher/view.php?person=us-hugokraw">Hugo Krawczyk</a>.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Steve Marquess]]></title>
            <link href="https://openssl-library.org/post/2017-10-27-steve-marquess/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-10-27-steve-marquess/</id>
            
            
            <published>2017-10-27T01:00:00+00:00</published>
            <updated>2017-10-27T01:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Steve Marquess is leaving the OpenSSL project as of the 15th of November 2017.</p>
<p>The OpenSSL Management Committee (OMC) would like to wish him all the
best for the future.</p>
<p>All communication that used to go to Steve Marquess directly, should
now be sent to <a href="mailto:info@openssl.org">info@openssl.org</a> in the first instance.</p>
<p>Thanks for your contributions to the project over the years!</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Steve Henson]]></title>
            <link href="https://openssl-library.org/post/2017-10-24-steve-henson/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-10-24-steve-henson/</id>
            
            
            <published>2017-10-24T01:00:00+00:00</published>
            <updated>2017-10-24T01:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>For as long as I have been involved in the OpenSSL project there has been one
constant presence: Steve Henson. In fact he has been a part of the project since
it was founded and he is the number 1 committer of all time (by a wide margin).
I recall the first few times I had any dealings with him being somewhat in awe
of his encyclopaedic knowledge of OpenSSL and all things crypto. Over the years
Steve has made very many significant contributions both in terms of code but
also in terms of being an active member of the management team.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Seven days and four cities in China]]></title>
            <link href="https://openssl-library.org/post/2017-09-28-china-2/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-09-28-china-2/</id>
            
            <author>
                        <name>Tim Hudson</name>
                    </author>
            <published>2017-09-28T01:00:00+00:00</published>
            <updated>2017-09-28T01:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We had been invited to spend time with the open source community in China
by one of the developers - <a href="https://github.com/InfoHunter">Paul Yang</a> - who
participates in the OpenSSL project.  A number of the team members had
communicated via email over the last year and when the suggestion was made
there were enough of us willing and interested to visit China for a <em>&ldquo;tour&rdquo;</em>
to make sense. So the tour was agreed as a good thing and that started
the journey that lead to spending a week in China (last week as I write
this on the plane on the way back to Australia).</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[FIPS 140-2: Thanks and Farewell to SafeLogic]]></title>
            <link href="https://openssl-library.org/post/2017-08-17-fips/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-08-17-fips/</id>
            
            <author>
                        <name>Steve Marquess</name>
                    </author>
            <published>2017-08-17T16:00:00+00:00</published>
            <updated>2017-08-17T16:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We&rsquo;ve had a change in the stakeholder aspect of this new FIPS 140 validation effort.
The original sponsor, <a href="https://www.safelogic.com/">SafeLogic</a>, with whom we jump-started
this effort a year ago and who has worked with us since then, is taking a well-deserved
bow due to a change in circumstances. Supporting this effort has been quite a strain for
a relatively small company, but SafeLogic has left us in a fairly good position. Without
SafeLogic we wouldn&rsquo;t have made it this far, and while I don&rsquo;t anticipate any future
SafeLogic involvement with this effort from this point on, I remain enormously grateful
to SafeLogic and CEO Ray Potter for taking on such a bold and ambitious venture.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Random thoughts]]></title>
            <link href="https://openssl-library.org/post/2017-08-10-random/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-08-10-random/</id>
            
            
            <published>2017-08-12T20:00:00+00:00</published>
            <updated>2017-08-12T20:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The next release will include a completely overhauled version of the random
number facility, the <code>RAND</code> API. The default RAND method is now based
on a Deterministic Random Bit Generator (DRBG) implemented according to
the NIST recommendation 800-90A.
We have also edited the documentation, allowed
finer-grained configuration of how to seed the generator, and updated
the default seeding mechanisms.</p>
<p>There will probably be more changes before the release is made, but they
should be comparatively minor.</p>
<p>Read on for more details.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[FIPS 140-2: And so it begins]]></title>
            <link href="https://openssl-library.org/post/2017-07-25-fips/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-07-25-fips/</id>
            
            <author>
                        <name>Steve Marquess</name>
                    </author>
            <published>2017-07-25T20:00:00+00:00</published>
            <updated>2017-07-25T20:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>It&rsquo;s been almost a year since plans for a new FIPS 140 validation were
<a href="https://openssl-library.org/post/2016-07-20-fips/">first announced</a>.
Several factors have led to this long delay. For one, we chose to focus
our limited manpower resources on higher priority objectives such as the
TLS 1.3 implementation. SafeLogic has also experienced difficulties in
obtaining the funding for their intended sponsorship; potential sponsors can
<a href="mailto:OpenSSL@SafeLogic.com">contact them directly</a>.</p>
<p>With TLS 1.3 now done (pending only a final TLS 1.3 specification) we&rsquo;re
now in a position to turn our attention to the new FIPS module, and just
in the nick of time Oracle has pledged enough funding to get us off to a
good start. With financial support from the Linux Foundation Core
Infrastructure Initiative temporarily interrupted, leaving a team member with
no income, that funding eases the pressure to seek new long term employment.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Removing some code]]></title>
            <link href="https://openssl-library.org/post/2017-06-22-code-removal/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-06-22-code-removal/</id>
            
            
            <published>2017-06-17T12:00:00+00:00</published>
            <updated>2017-06-17T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>This is another update on our effort to re-license the OpenSSL software.
Our previous post in <a href="https://openssl-library.org/post/2017-03-20-license/">March</a> was about the
launch of our effort to reach all contributors, with the hope that they
would support this change.</p>
<p>So far, about 40% of the people have responded. For a project that is
as old as OpenSSL (including its predecessor, SSLeay, it&rsquo;s around 20 years)
that&rsquo;s not bad.
We&rsquo;ll be continuing our efforts over the next couple of months to
contact everyone.</p>
<p>Of those people responding, the vast majority have been in favor of
the license change &ndash; less then a dozen objected. This post describes
what we&rsquo;re doing about those and how we came to our conclusions. The
goal is to be very transparent and open with our processes.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New Committers]]></title>
            <link href="https://openssl-library.org/post/2017-06-15-committers/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-06-15-committers/</id>
            
            
            <published>2017-06-13T12:00:00+00:00</published>
            <updated>2017-06-13T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We announced back in <a href="https://openssl-library.org/post/2017-02-13-bylaws/">October</a>
that we would be changing from a single OpenSSL Project Team to having
an <a href="https://www.openssl.org/community/omc.html">OpenSSL management committee</a>
and a set of <a href="https://www.openssl.org/community/committers.html">committers</a> which
we planned to expand to enable the greater involvement from the community.</p>
<p>Now that we have in place <a href="https://www.openssl.org/policies/committers.html">committer guidelines</a>,
we have invited the first set of external (non-OMC) community members to become committers and
they have each accepted the invitation.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Using TLS1.3 with OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2017-05-04-tlsv1.3/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-05-04-tlsv1.3/</id>
            
            
            <published>2017-05-04T12:00:00+01:00</published>
            <updated>2017-05-04T12:00:00+01:00</updated>
            
            
            <content type="html"><![CDATA[<p>Note: This is an outdated version of this blog post. This information is now
maintained in a wiki page. See
<a href="https://github.com/openssl/openssl/wiki/TLS1.3">here</a> for the latest version.</p>
<p>The forthcoming OpenSSL 1.1.1 release will include support for TLSv1.3. The new
release will be binary and API compatible with OpenSSL 1.1.0. In theory, if your
application supports OpenSSL 1.1.0, then all you need to do to upgrade is to drop
in the new version of OpenSSL when it becomes available and you will
automatically start being able to use TLSv1.3. However there are some issues
that application developers and deployers need to be aware of. In this blog post
I am going to cover some of those things.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Licensing Update]]></title>
            <link href="https://openssl-library.org/post/2017-03-20-license/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-03-20-license/</id>
            
            <author>
                        <name>Rich Salz</name>
                    </author>
            <published>2017-03-22T12:00:00+00:00</published>
            <updated>2017-03-22T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The following is a press release that we just released, with the cooperation
and financial support of the Core Infrastructure Initiative and the
Linux Foundation.</p>
<p>In the next few days we&rsquo;ll start sending out email to all contributors
asking them to approve the change. In the meantime, you can visit
<a href="https://license.openssl.org">the licensing website</a> and search for
your name and request the email.  If you have changed email addresses,
or want to raise other issues about the license change, please email
<a href="mailto:license@openssl.org">license@openssl.org</a>.  You can also post
general issues to
<a href="mailto:openssl-users@openssl.org">openssl-users@openssl.org</a>.</p>
<p>We are grateful to all the contributors who have contributed to OpenSSL
and look forward to their help and support in this effort.</p>
<p>The <a href="https://www.coreinfrastructure.org/announcements/openssl-re-licensing-to-apache-license-v-2-0-to-encourage-broader-use-with-other-foss-projects-and-products/">official press release</a> can be found at the CII website.  The rest of this post is a copy:</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL and Threads]]></title>
            <link href="https://openssl-library.org/post/2017-02-21-threads/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-02-21-threads/</id>
            
            
            <published>2017-02-21T11:00:00+00:00</published>
            <updated>2017-02-21T11:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>This post talks about OpenSSL and threads.  In particular, using OpenSSL
in multi-threaded applications.  It traces through the history, explains
what was changed for the 1.1.0 release, and will hopefully provide some
guidance to developers.</p>
<p>While none of the behaviors have really changed, and therefore none of
this should be new information, the documentation has not been as
clear as it could, or should, be.  Therefore, some readers might be
surprised by what&rsquo;s in this post.</p>
<p>In short, OpenSSL has always, and only, supported the concept of
<em>locking</em> an object and sometimes it locks its internal
objects.  Read on for more details.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Project Bylaws]]></title>
            <link href="https://openssl-library.org/post/2017-02-13-bylaws/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2017-02-13-bylaws/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2017-02-13T12:00:00+00:00</published>
            <updated>2017-02-13T12:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Last October, the OpenSSL Project team had a face to face meeting.
We talked about many topics but one of them was that, in recent years, we have
seen much more involvement from the community and that we would like to
encourage that further. For example, there are a number of people in the
community who we know and trust. We would like those people to get involved more
and make it easier for them to contribute.  We decided to introduce the
concept of a &ldquo;committer&rdquo; (borrowed from the Apache concept): someone who has the
ability to commit code to our source code repository but without necessarily
having to become a full team member. This might be seen as a stepping-stone for
someone who aspires to full team membership, or simply as an easier way of
contributing for those that don&rsquo;t. Those people could help with our review
process (i.e., their reviews would count towards approval) - which might help us
keep on top of the github issues and pull request queues.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OCAP audit of OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2016-12-15-audit/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2016-12-15-audit/</id>
            
            <author>
                        <name>Matt Caswell</name>
                    </author>
            <published>2016-12-15T01:00:00+00:00</published>
            <updated>2016-12-15T01:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The audit took place during 2015 in two phases while the OpenSSL project was
working on the development of the (now released) 1.1.0 version. We chose to
audit the &ldquo;master&rdquo; branch of the code as it stood at the time. OpenSSL 1.1.0 has
made some extensive internal changes, most notably in libssl with the new
state machine code, as well as the new packet parsing code. We wanted the audit
team to review that code to give us confidence that what we were delivering was
sound.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Face to Face: Roadmap and platform updates]]></title>
            <link href="https://openssl-library.org/post/2016-10-24-f2f-roadmap/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2016-10-24-f2f-roadmap/</id>
            
            <author>
                        <name>Rich Salz</name>
                    </author>
            <published>2016-10-24T01:00:00+00:00</published>
            <updated>2016-10-24T01:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>This is another in the
<a href="/blog/2016/10/12/f2f-rt-github/">series of posts</a>
about decisions we made at our face-to-face meeting a couple of weeks
ago.</p>
<p>We updated the
<a href="https://www.openssl.org/policies/roadmap.html">project roadmap</a>.</p>
<p>I think the most important news here, is that our next release will
include TLS 1.3. Our current plan is that this will be 1.1.1, which means
that it is API-compatible with the current 1.1.0 release. This is really
only possible because of the work we did on making most of the structure
internals opaque.  Also, since we are doing all of our work in public on
our GitHub repository, we hope that the entire community will be able to
&ldquo;follow along at home&rdquo; and help us improve the code.  There will be more,
much more, to say about this later.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Face to Face: Goodbye RT, hello GitHub]]></title>
            <link href="https://openssl-library.org/post/2016-10-12-f2f-rt-github/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2016-10-12-f2f-rt-github/</id>
            
            
            <published>2016-10-12T01:00:00+00:00</published>
            <updated>2016-10-12T01:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Last week, the OpenSSL dev team had another face-to-face meeting.
It was a week of &ldquo;mosts&rdquo;: most of the team flew in for most of the
week, and most of it was funded by the
<a href="https://www.coreinfrastructure.org/">CII/LF</a></p>
<p>We got a great deal accomplished during that week.  We do many things by
vote, and having everyone in the room to talk not only beats email all
to hell, but it ensures that we&rsquo;re all on the same page for the decisions
we make.  Sure, not everything was a unanimous decision, but none
were decided by narrow margins.</p>
<p>In this post I&rsquo;m going to talk about two important decisions.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[The SWEET32 issue, CVE-2016-2183]]></title>
            <link href="https://openssl-library.org/post/2016-08-25-sweet32/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2016-08-25-sweet32/</id>
            
            
            <published>2016-08-24T23:16:00+00:00</published>
            <updated>2016-08-24T23:16:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Today, Karthik Bhargavan and Gaetan Leurent from Inria have unveiled a
new attack on Triple-DES, <a href="https://sweet32.info">SWEET32</a>, Birthday attacks
on 64-bit block ciphers in TLS and OpenVPN.
It has been assigned CVE-2016-2183.</p>
<p>This post gives a bit of background and describes what OpenSSL is doing.
For more details, see their website.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[FIPS 140-2: Once more unto the breach]]></title>
            <link href="https://openssl-library.org/post/2016-07-20-fips/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2016-07-20-fips/</id>
            
            <author>
                        <name>Steve Marquess</name>
                    </author>
            <published>2016-07-20T19:00:00+00:00</published>
            <updated>2016-07-20T19:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The last <a href="https://openssl-library.org/post/2015-09-29-fips/">post on this topic</a> sounded a
skeptical note on the prospects for a new FIPS 140 validated module for OpenSSL 1.1 and
beyond. That post noted a rather improbable set of prerequisites for a new validation attempt;
ones I thought only a governmental sponsor could meet (as was the case for the five previous
open source based validations).</p>
<p>Multiple commercial vendors have offered to fund (very generously in some cases) a new validation
effort under terms that would guarantee them a proprietary validation, while not guaranteeing
an open source based validation. At one point we actually came close to closing a deal that would
have funded an open source based validation attempt in exchange for a limited period of exclusivity;
a reasonable trade-off in my opinion. But, I eventually concluded that was too risky given an
uncertain reception by the FIPS validation bureaucracy, and we decided to wait for a &ldquo;white knight&rdquo;
sponsor that might never materialize.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Undefined Pointer Arithmetic]]></title>
            <link href="https://openssl-library.org/post/2016-06-27-undefined-pointer-arithmetic/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2016-06-27-undefined-pointer-arithmetic/</id>
            
            
            <published>2016-06-27T17:00:00+00:00</published>
            <updated>2016-06-27T17:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>In commits a004e72b9 (1.0.2) and 6f35f6deb (1.0.1) we released a fix for
CVE-2016-2177. The fix corrects a common coding idiom present in OpenSSL 1.0.2
and OpenSSL 1.0.1 which actually relies on a usage of pointer arithmetic that
is undefined in the C specification. The problem does not exist in master
(OpenSSL 1.1.0) which refactored this code some while ago. This usage could give
rise to a low severity security issue in certain unusual scenarios. The OpenSSL
security policy (<a href="https://openssl-library.org/policies/general/security-policy/">https://openssl-library.org/policies/general/security-policy/</a>) states that we
publish low severity issues directly to our public repository, and they get
rolled up into the next release whenever that happens. The rest of this blog
post describes the problem in a little more detail, explains the scenarios
where a security issue could arise and why this issue has been rated as low
severity.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[An OpenSSL user's guide to DROWN]]></title>
            <link href="https://openssl-library.org/post/2016-03-01-an-openssl-users-guide-to-drown/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2016-03-01-an-openssl-users-guide-to-drown/</id>
            
            
            <published>2016-03-01T14:59:00+00:00</published>
            <updated>2016-03-01T14:59:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Today, an international group of researchers unveiled
<a href="https://www.drownattack.com">DROWN</a> (Decrypting RSA with Obsolete and
Weakened eNcryption), aka CVE-2016-0800, a novel cross-protocol attack that uses SSLv2
handshakes to decrypt TLS sessions.</p>
<p>Over the past weeks, the OpenSSL team worked closely with the
researchers to determine the exact impact of DROWN on OpenSSL and
devise countermeasures to protect our users. Today’s
<a href="https://www.openssl.org/news/secadv/20160301.txt">OpenSSL release</a> makes it
impossible to configure a TLS server in such a way that it is vulnerable to
DROWN.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Poly1305 revised]]></title>
            <link href="https://openssl-library.org/post/2016-02-15-poly1305-revised/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2016-02-15-poly1305-revised/</id>
            
            
            <published>2016-02-15T22:16:22+01:00</published>
            <updated>2016-02-15T22:16:22+01:00</updated>
            
            
            <content type="html"><![CDATA[<p><a href="http://cr.yp.to/mac.html">Poly1305</a> implementations are characterized
by several parameters:</p>
<ul>
<li><em>radix or base of inputs representation</em>, or how many digits
represent the 130-bit value the algorithm operates on;</li>
<li><em>vectorization factor</em>, or how many input blocks are
processed per [loop] iteration and in parallel;</li>
<li><em>floating-point vs. integer/scalar</em> arithmetic;</li>
</ul>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Engine Building Lesson 2: An Example MD5 Engine]]></title>
            <link href="https://openssl-library.org/post/2015-11-23-engine-building-lesson-2-an-example-md5-engine/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-11-23-engine-building-lesson-2-an-example-md5-engine/</id>
            
            
            <published>2015-11-23T22:19:30+01:00</published>
            <updated>2015-11-23T22:19:30+01:00</updated>
            
            
            <content type="html"><![CDATA[<p>Coming back after a month and two weeks, it&rsquo;s time to resume with the
next engine lesson, this time building an engine implementing a
digest.</p>
<p>It doesn&rsquo;t matter much what digest algorithm we choose.  Being lazy,
I&rsquo;ve chosen one with a well defined reference implementation, MD5
(reference implementation is found in
<a href="https://www.ietf.org/rfc/rfc1321.txt">RFC 1321</a>)</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Engine building lesson 1: A minimum useless engine]]></title>
            <link href="https://openssl-library.org/post/2015-10-08-engine-building-lesson-1-a-minimum-useless-engine/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-10-08-engine-building-lesson-1-a-minimum-useless-engine/</id>
            
            
            <published>2015-10-08T05:41:20+02:00</published>
            <updated>2015-10-08T05:41:20+02:00</updated>
            
            
            <content type="html"><![CDATA[<p>In this lesson, we&rsquo;re going to explore minimalism, in this case in the
form of the most minimal engine possible (without obfuscating it).</p>
<p>The least boilerplate code for an engine looks like this:</p>
<div class="highlight"><pre tabindex="0" style="color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-C" data-lang="C"><span style="display:flex;"><span><span style="color:#93a1a1;font-style:italic">#include</span> <span style="color:#93a1a1;font-style:italic">&lt;openssl/engine.h&gt;</span><span style="color:#93a1a1;font-style:italic">
</span></span></span><span style="display:flex;"><span><span style="color:#93a1a1;font-style:italic"></span>
</span></span><span style="display:flex;"><span><span style="color:#268bd2">IMPLEMENT_DYNAMIC_BIND_FN</span>(<span style="color:#268bd2">bind</span>)
</span></span><span style="display:flex;"><span><span style="color:#268bd2">IMPLEMENT_DYNAMIC_CHECK_FN</span>()
</span></span></code></pre></div><p>This example isn&rsquo;t complete, it will not compile.  <em>However</em>, it
contains the absolute minimum required for those module to even be
recognised as an OpenSSL engine.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Engine school, a path to writing standalone engines]]></title>
            <link href="https://openssl-library.org/post/2015-10-07-engine-school/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-10-07-engine-school/</id>
            
            
            <published>2015-10-07T23:32:00+00:00</published>
            <updated>2015-10-07T23:32:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>For the longest time, it seems that people have wanted to have their
diverse engines bundled with the OpenSSL source, as if there was no
other way to build it or distribute it.</p>
<p>Nothing could be further from the truth.  Also, having the engine for
some hardware bundled with the OpenSSL source presents a maintainance
problem, and the better solution is for those who have an engine to
maintain theḿ themselves.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New severity level, "Critical"]]></title>
            <link href="https://openssl-library.org/post/2015-09-28-critical-security-level/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-09-28-critical-security-level/</id>
            
            <author>
                        <name>Mark Cox</name>
                    </author>
            <published>2015-09-28T12:10:00+00:00</published>
            <updated>2015-09-28T12:10:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We&rsquo;ve just added a new severity level called &ldquo;critical severity&rdquo; to our
<a href="https://openssl-library.org/policies/general/security-policy/">security policy</a>.  When we first introduced the policy, over a year ago, we just
had three levels, &ldquo;Low&rdquo;, &ldquo;Moderate&rdquo;, and &ldquo;High&rdquo;.  So why did we add &ldquo;Critical&rdquo; and
why are we not using someone else&rsquo;s standard definitions?</p>
<p>After introducing the new policy we started giving everyone a headsup when we
were due to release OpenSSL updates that included security fixes.  The headsup
doesn&rsquo;t contain any details of the issues being fixed apart from the maximum
severity level and a date a few days in the future.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[FIPS 140-2: It's not dead, it's resting]]></title>
            <link href="https://openssl-library.org/post/2015-09-29-fips/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-09-29-fips/</id>
            
            <author>
                        <name>Steve Marquess</name>
                    </author>
            <published>2015-09-02T14:00:00+00:00</published>
            <updated>2015-09-02T14:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Some of you may have noticed that the upcoming 1.1 release doesn&rsquo;t include any FIPS support. That omission is not by choice; it was forced on us by circumstances and will hopefully not be permanent.</p>
<p>The v2.0 OpenSSL FIPS module is compatible with the 1.0.x releases, in particular the 1.0.2 &ldquo;LTS&rdquo; release that will be supported through 2019. It has proven very popular, used both directly by hundreds of software vendors and indirectly as a model for copycat &ldquo;private label&rdquo; validations.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[OpenSSL Security: A Year in Review]]></title>
            <link href="https://openssl-library.org/post/2015-09-01-openssl-security-a-year-in-review/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-09-01-openssl-security-a-year-in-review/</id>
            
            <author>
                        <name>Emilia Käsper</name>
                    </author>
            <published>2015-09-01T12:47:00+00:00</published>
            <updated>2015-09-01T12:47:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Over the last 10 years, OpenSSL has published advisories on <a href="https://www.openssl.org/news/vulnerabilities.html">over 100 vulnerabilities</a>. Many more were likely silently fixed in the early days, but in the past year our goal has been to establish a clear public record.</p>
<p>In September 2014, the team adopted a <a href="https://openssl-library.org/policies/general/security-policy/">security policy</a> that defines how we handle vulnerability reports. One year later, I&rsquo;m very happy to conclude that our policy is enforced, and working well.</p>
<p>Our policy divides vulnerabilities into three categories, and defines actions for each category: we use the severity ranking to balance the need to get the fix out fast with the burden release upgrades put on our consumers.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[New website]]></title>
            <link href="https://openssl-library.org/post/2015-08-15-website/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-08-15-website/</id>
            
            
            <published>2015-08-15T14:00:00+00:00</published>
            <updated>2015-08-15T14:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We just went live with a new website.  The design is based on the style
included with <a href="http://octopress.org/">Octopress</a>; the new logo and some other
important CSS tweaks were contributed by Tony Arcieri.
The style is also mobile-friendly, so you can take us with you wherever
you go. :)  We still need a better &ldquo;favicon.&rdquo;</p>
<p>The text still needs more work. As someone on the team pointed out,
&ldquo;a worldwide community of volunteers that use the Internet to communicate,
plan, and develop [OpenSSL]&rdquo; &hellip; really?</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[License Agreements and changes are coming]]></title>
            <link href="https://openssl-library.org/post/2015-08-01-cla/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-08-01-cla/</id>
            
            <author>
                        <name>Rich Salz</name>
                    </author>
            <published>2015-08-01T09:00:00+00:00</published>
            <updated>2015-08-01T09:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL license is rather unique and idiosyncratic.  It reflects
views from when its predecessor, SSLeay, started twenty years ago.  As a
further complication, the original authors were hired by RSA in 1998,
and the code forked into two versions: OpenSSL and RSA BSAFE SSL-C.
(<a href="https://en.wikipedia.org/wiki/SSLeay">See Wikipedia</a> for discussion.) I don&rsquo;t
want get into any specific details, and I certainly don&rsquo;t know them all.</p>
<p>Things have evolved since then, and open source is an important part of
the landscape &ndash; the Internet could not exist without it.
There are good reasons why Microsoft is a founding member of the
Core Infrastructure Initiative (<a href="https://www.coreinfrastructure.org/">CII</a>).</p>
<p>Our plan is to update the license to the
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License version 2.0</a>.
We are in
consultation with various corporate partners, the CII, and the legal experts
at the <a href="https://www.softwarefreedom.org/">Software Freedom Law Center</a>.
In other words, we have a great deal of expertise and interest at our
fingertips.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Beyond reformatting: More code cleanup]]></title>
            <link href="https://openssl-library.org/post/2015-07-27-code-cleanup/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-07-27-code-cleanup/</id>
            
            
            <published>2015-07-28T13:20:00+00:00</published>
            <updated>2015-07-28T13:20:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>The OpenSSL source doesn&rsquo;t look the same as it did a year ago.  Matt
posted about the big code reformatting. In this post I want review some
of the other changes &ndash; these rarely affect features, but are more than
involved than &ldquo;just&rdquo; whitespace.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Logjam, FREAK and upcoming changes in OpenSSL]]></title>
            <link href="https://openssl-library.org/post/2015-05-20-logjam-freak-upcoming-changes/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-05-20-logjam-freak-upcoming-changes/</id>
            
            
            <published>2015-05-20T18:12:00+00:00</published>
            <updated>2015-05-20T18:12:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Today, news broke of Logjam, an attack on TLS connections using Diffie-Hellman ciphersuites. To protect OpenSSL-based clients, we&rsquo;re increasing the minimum accepted DH key size to 768 bits immediately in the next release, and to 1024 bits soon after. We have also made several other changes to strengthen our cryptographic defaults and have updated our tools and documentation to help servers configure Diffie-Hellman ciphersuites securely - see below for details.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Security Updates]]></title>
            <link href="https://openssl-library.org/post/2015-03-19-security-updates/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-03-19-security-updates/</id>
            
            
            <published>2015-03-19T14:00:00+00:00</published>
            <updated>2015-03-19T14:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We&rsquo;ve just released security updates to OpenSSL 0.9.8, 1.0.0,
1.0.1, and 1.0.2.</p>
<p>These updates fix a number of Moderate and Low severity security
issues in OpenSSL.  They also fix one new High severity issue,
CVE-2015-0291, that affects just OpenSSL 1.0.2, released in January
this year.  A remote attacker could use this flaw to cause unfixed
servers to crash, which could lead to a denial of service attack
depending on the server.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Code Reformat Finished]]></title>
            <link href="https://openssl-library.org/post/2015-02-11-code-reformat-finished/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-02-11-code-reformat-finished/</id>
            
            
            <published>2015-02-11T13:45:00+00:00</published>
            <updated>2015-02-11T13:45:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>At the end of January we completed the OpenSSL code reformat as previously mentioned <a href="https://openssl-library.org/post/2015-01-05-source-code-reformat/">here</a> and <a href="https://mta.openssl.org/pipermail/openssl-announce/2015-January/000014.html">here</a>. This post is intended to give you a bit more insight into exactly what we&rsquo;ve done.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Source Code Reformat]]></title>
            <link href="https://openssl-library.org/post/2015-01-05-source-code-reformat/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2015-01-05-source-code-reformat/</id>
            
            
            <published>2015-01-05T14:36:25+00:00</published>
            <updated>2015-01-05T14:36:25+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>We have previously announced our intention to reformat the entire
codebase into a more consistent style (see our roadmap document here:
<a href="https://www.openssl.org/policies/roadmap.html">https://www.openssl.org/policies/roadmap.html</a>)</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[On redesigning our website]]></title>
            <link href="https://openssl-library.org/post/2014-12-28-website-redesign/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2014-12-28-website-redesign/</id>
            
            
            <published>2014-12-28T19:00:00+00:00</published>
            <updated>2014-12-28T19:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>So I recently asked for
<a href="https://twitter.com/RichSalz/status/547589365569183746">help with our website</a>
on Twitter. It&rsquo;s been my most popular tweet. Several people have
expressed an interest &ndash; thanks for that, and thanks for your support.</p>
<p>The goal of this post is to list the requirements. It&rsquo;s definitely
incomplete and will evolve over time. Post your questions and comments
and help refine the list!</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[The new Release Strategy]]></title>
            <link href="https://openssl-library.org/post/2014-12-23-the-new-release-strategy/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2014-12-23-the-new-release-strategy/</id>
            
            
            <published>2014-12-23T23:16:00+00:00</published>
            <updated>2014-12-23T23:16:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Today the OpenSSL project published its Release Strategy. You can read it <a href="https://www.openssl.org/policies/releasestrat.html">here</a>. There are some really important announcements discussed in it. I&rsquo;d like to spend a bit of time talking about the thinking that went into writing this strategy.</p>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
        
        <entry>
            <title type="html"><![CDATA[Hello World]]></title>
            <link href="https://openssl-library.org/post/2014-12-19-hello/?utm_source=atom_feed" rel="alternate" type="text/html" />
            
            
                <id>https://openssl-library.org/post/2014-12-19-hello/</id>
            
            
            <published>2014-12-19T20:00:00+00:00</published>
            <updated>2014-12-19T20:00:00+00:00</updated>
            
            
            <content type="html"><![CDATA[<p>Well, we did it.  We have an OpenSSL team blog.</p>
<p>Powered by Octopress.  Take a bit of doing to get it running.</p>
<p>Whew.</p>
<div class="highlight"><pre tabindex="0" style="color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-C" data-lang="C"><span style="display:flex;"><span><span style="color:#93a1a1;font-style:italic">#include</span> <span style="color:#93a1a1;font-style:italic">&lt;stdio.h&gt;</span><span style="color:#93a1a1;font-style:italic">
</span></span></span><span style="display:flex;"><span><span style="color:#93a1a1;font-style:italic"></span>
</span></span><span style="display:flex;"><span><span style="color:#859900;font-weight:bold">int</span>
</span></span><span style="display:flex;"><span><span style="color:#268bd2">main</span>(<span style="color:#859900;font-weight:bold">int</span> <span style="color:#268bd2">ac</span>, <span style="color:#859900;font-weight:bold">char</span> *<span style="color:#268bd2">av</span>[])
</span></span><span style="display:flex;"><span>{
</span></span><span style="display:flex;"><span>    <span style="color:#268bd2">printf</span>(<span style="color:#2aa198">&#34;Hello, world</span><span style="color:#2aa198">\n</span><span style="color:#2aa198">&#34;</span>);
</span></span><span style="display:flex;"><span>    <span style="color:#859900">return</span> <span style="color:#2aa198;font-weight:bold">0</span>;
</span></span><span style="display:flex;"><span>}
</span></span></code></pre></div>]]></content>
            
                 
                    
                 
                    
                
            
        </entry>
    
</feed>