diff options
author | Henrik Nord <[email protected]> | 2017-09-26 12:33:40 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2017-09-26 12:33:40 +0200 |
commit | 25587f05f5d80f9cfa25df953b3ce7f53c70d31a (patch) | |
tree | dfe3cb303402f0ebf8107ff77a764ab9286f67d9 /lib/crypto | |
parent | 3c23f2c6335d8586aca1efb9da6d20f00a8840fd (diff) | |
parent | 02fd746c40e829adbe77cc526c7df904698e2534 (diff) | |
download | otp-25587f05f5d80f9cfa25df953b3ce7f53c70d31a.tar.gz otp-25587f05f5d80f9cfa25df953b3ce7f53c70d31a.tar.bz2 otp-25587f05f5d80f9cfa25df953b3ce7f53c70d31a.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/crypto')
-rw-r--r-- | lib/crypto/doc/src/notes.xml | 46 | ||||
-rw-r--r-- | lib/crypto/vsn.mk | 2 |
2 files changed, 47 insertions, 1 deletions
diff --git a/lib/crypto/doc/src/notes.xml b/lib/crypto/doc/src/notes.xml index 574353ce7a..9376e6f649 100644 --- a/lib/crypto/doc/src/notes.xml +++ b/lib/crypto/doc/src/notes.xml @@ -31,6 +31,52 @@ </header> <p>This document describes the changes made to the Crypto application.</p> +<section><title>Crypto 4.1</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p>On macOS, <c>crypto</c> would crash if <c>observer</c> + had been started before <c>crypto</c>. On the beta for + macOS 10.13 (High Sierra), <c>crypto</c> would crash. + Both of those bugs have been fixed.</p> + <p> + Own Id: OTP-14499 Aux Id: ERL-251 ERL-439 </p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p> + Extend crypto:sign, crypto:verify, public_key:sign and + public_key:verify with:</p> + <p> + * support for RSASSA-PS padding for signatures and for + saltlength setting<br/> * X9.31 RSA padding.<br/> * sha, + sha224, sha256, sha384, and sha512 for dss signatures as + mentioned in NIST SP 800-57 Part 1.<br/> * ripemd160 to + be used for rsa signatures.</p> + <p> + This is a manual merge of half of the pull request 838 by + potatosalad from Sept 2015.</p> + <p> + Own Id: OTP-13704 Aux Id: PR838 </p> + </item> + <item> + <p> + A new tuple in <c>crypto:supports/0</c> reports supported + MAC algorithms.</p> + <p> + Own Id: OTP-14504</p> + </item> + </list> + </section> + +</section> + <section><title>Crypto 4.0</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/crypto/vsn.mk b/lib/crypto/vsn.mk index 796e3b6d84..1dceebb4e4 100644 --- a/lib/crypto/vsn.mk +++ b/lib/crypto/vsn.mk @@ -1 +1 @@ -CRYPTO_VSN = 4.0 +CRYPTO_VSN = 4.1 |