Skip to content

Commit

Permalink
Update openssl to 1.1.1m
Browse files Browse the repository at this point in the history
  • Loading branch information
WillChilds-Klein committed Jan 11, 2022
1 parent 38e0cb6 commit fcbf008
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changelog

## 1.6.2 (Unreleased)
## 1.7.0 (Unreleased)
### Improvements
* Now uses [OpenSSL 1.1.1m](https://www.openssl.org/source/openssl-1.1.1m.tar.gz). [PR #173](https://github.com/corretto/amazon-corretto-crypto-provider/pull/173)
* Add "help" value to two of our properties which outputs (to STDERR) valid values.
* `com.amazon.corretto.crypto.provider.extrachecks`
* `com.amazon.corretto.crypto.provider.debug`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
The Amazon Corretto Crypto Provider (ACCP) is a collection of high-performance cryptographic implementations exposed via the standard [JCA/JCE](https://docs.oracle.com/en/java/javase/11/security/java-cryptography-architecture-jca-reference-guide.html) interfaces.
This means that it can be used as a drop in replacement for many different Java applications.
(Differences from the default OpenJDK implementations are [documented here](./DIFFERENCES.md).)
Currently algorithms are primarily backed by OpenSSL's implementations (1.1.1j as of ACCP 1.6.0) but this may change in the future.
Currently algorithms are primarily backed by OpenSSL's implementations (1.1.1m as of ACCP 1.7.0) but this may change in the future.

[Security issue notifications](./CONTRIBUTING.md#security-issue-notifications)

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ plugins {
}

group = 'software.amazon.cryptools'
version = '1.6.2'
version = '1.7.0'

def openssl_version = '1.1.1j'
def openssl_version = '1.1.1m'
def opensslSrcPath = "${buildDir}/openssl/openssl-${openssl_version}"

configurations {
Expand Down
2 changes: 1 addition & 1 deletion openssl.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aaf2fcb575cdf6491b98ab4829abf78a3dec8402b8b81efc8f23c00d443981bf openssl-1.1.1j.tar.gz
f89199be8b23ca45fc7cb9f1d8d3ee67312318286ad030f5316aca6462db6c96 openssl-1.1.1m.tar.gz

0 comments on commit fcbf008

Please sign in to comment.