<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/crypto/c_src, branch OTP-19.3</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Update copyright year</title>
<updated>2017-03-10T14:00:46+00:00</updated>
<author>
<name>Rickard Green</name>
<email>rickard@erlang.org</email>
</author>
<published>2017-03-10T14:00:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=26c3cd82529836cb5b6eefbf7f92f318fd91f847'/>
<id>26c3cd82529836cb5b6eefbf7f92f318fd91f847</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Added optional length to paramlist in generate_key</title>
<updated>2017-01-27T13:32:55+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2017-01-26T17:54:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6468551301f906ce4199ef69b677147d88d64242'/>
<id>6468551301f906ce4199ef69b677147d88d64242</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Return source line number from failed load/upgrade</title>
<updated>2016-10-05T13:43:52+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2016-10-05T13:43:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=cf102c1b1225450e7918a6119b7d949eb7e575c4'/>
<id>cf102c1b1225450e7918a6119b7d949eb7e575c4</id>
<content type='text'>
Renamed the init function as the return semantics are changed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Renamed the init function as the return semantics are changed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'RoadRunnr/crypto/no-rc4/PR-1169/OTP-13896' into maint</title>
<updated>2016-10-04T13:22:00+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2016-10-04T13:16:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=634d26929bb5852958870a7b18f67b4b8702bfa2'/>
<id>634d26929bb5852958870a7b18f67b4b8702bfa2</id>
<content type='text'>
* RoadRunnr/crypto/no-rc4/PR-1169/OTP-13896:
  disable RC4 in SSL when crypto doesn't support it
  Fix compilation when OpenSSL doesn't support RC4

Conflicts:
	lib/crypto/c_src/crypto.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* RoadRunnr/crypto/no-rc4/PR-1169/OTP-13896:
  disable RC4 in SSL when crypto doesn't support it
  Fix compilation when OpenSSL doesn't support RC4

Conflicts:
	lib/crypto/c_src/crypto.c
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix compilation when OpenSSL doesn't support RC4</title>
<updated>2016-09-22T09:11:25+00:00</updated>
<author>
<name>Andreas Schultz</name>
<email>aschultz@tpip.net</email>
</author>
<published>2016-09-14T08:05:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=25c665f745bce31cc89e9f48980c7a9683259259'/>
<id>25c665f745bce31cc89e9f48980c7a9683259259</id>
<content type='text'>
When OpenSSL has been configured with the "no-rc4" option, the header
file rc4.h doesn't exist, and neither does the rc4 functions.
Let's handle those by checking whether OPENSSL_NO_RC4 is defined.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When OpenSSL has been configured with the "no-rc4" option, the header
file rc4.h doesn't exist, and neither does the rc4 functions.
Let's handle those by checking whether OPENSSL_NO_RC4 is defined.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix compilation when OpenSSL doesn't support RC2</title>
<updated>2016-09-14T13:31:31+00:00</updated>
<author>
<name>Magnus Henoch</name>
<email>magnus@erlang-solutions.com</email>
</author>
<published>2016-09-08T14:49:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6b4cf6c5759d1f1f952708ab191f563175950aa0'/>
<id>6b4cf6c5759d1f1f952708ab191f563175950aa0</id>
<content type='text'>
When OpenSSL has been configured with the "no-rc2" option, the header
file rc2.h doesn't exist, and neither does the function EVP_rc2_cbc.
Let's handle those by checking whether OPENSSL_NO_RC2 is defined.

Also update pbe_SUITE, which uses RC2-CBC in one of the tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When OpenSSL has been configured with the "no-rc2" option, the header
file rc2.h doesn't exist, and neither does the function EVP_rc2_cbc.
Let's handle those by checking whether OPENSSL_NO_RC2 is defined.

Also update pbe_SUITE, which uses RC2-CBC in one of the tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>Silence warnings in crypto</title>
<updated>2016-09-13T07:54:34+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2016-09-13T07:54:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=ec56f41f7a48055896037ac77927b99202371e62'/>
<id>ec56f41f7a48055896037ac77927b99202371e62</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add '_cfb' alias for misspelled '_cbf' cipher</title>
<updated>2016-09-02T14:01:46+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2016-09-02T12:31:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=05caf563c08b368ad5b6884ea9db3b2484953932'/>
<id>05caf563c08b368ad5b6884ea9db3b2484953932</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix badarg -&gt; notsup and test cases</title>
<updated>2016-09-02T14:00:53+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2016-09-02T08:02:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=e8057333e3beaceb6eed6b41f7aff7f2d523cb77'/>
<id>e8057333e3beaceb6eed6b41f7aff7f2d523cb77</id>
<content type='text'>
Also correct algo_cipher[] size since it was one to small.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also correct algo_cipher[] size since it was one to small.
</pre>
</div>
</content>
</entry>
<entry>
<title>Honour OPENSSL_NO_DES</title>
<updated>2016-09-02T09:07:31+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2016-08-02T08:29:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c60589e6b9085bf5d6fd9c43f2a7eeda3c49494f'/>
<id>c60589e6b9085bf5d6fd9c43f2a7eeda3c49494f</id>
<content type='text'>
Patch suggestion by Michae in ERL-203 at bugs.erlang.org.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch suggestion by Michae in ERL-203 at bugs.erlang.org.
</pre>
</div>
</content>
</entry>
</feed>
