<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/crypto/src, branch OTP-17.0</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Introduce runtime_dependencies in .app files</title>
<updated>2014-03-20T15:24:47+00:00</updated>
<author>
<name>Rickard Green</name>
<email>rickard@erlang.org</email>
</author>
<published>2014-03-10T16:15:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=22ff87a0c8db877e3ce53b6ff915dcc6a75c5c0c'/>
<id>22ff87a0c8db877e3ce53b6ff915dcc6a75c5c0c</id>
<content type='text'>
Most dependencies introduced are exactly the dependencies to other
applications found by xref. That is, there might be real dependencies
missing. There might also be pure debug dependencies listed that
probably should be removed. Each application has to be manually
inspected in order to ensure that all real dependencies are listed.

All dependencies introduced are to application versions used in
OTP 17.0. This since the previously used version scheme wasn't
designed for this, and in order to minimize the work of introducing
the dependencies.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most dependencies introduced are exactly the dependencies to other
applications found by xref. That is, there might be real dependencies
missing. There might also be pure debug dependencies listed that
probably should be removed. Each application has to be manually
inspected in order to ensure that all real dependencies are listed.

All dependencies introduced are to application versions used in
OTP 17.0. This since the previously used version scheme wasn't
designed for this, and in order to minimize the work of introducing
the dependencies.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'lukas/ose/master/OTP-11334'</title>
<updated>2014-02-24T15:45:04+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang-solutions.com</email>
</author>
<published>2014-02-24T15:45:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=a157ffce8e25012512e0e5d88e05fb135792f161'/>
<id>a157ffce8e25012512e0e5d88e05fb135792f161</id>
<content type='text'>
* lukas/ose/master/OTP-11334: (71 commits)
  erts: Fix unix efile assert
  ose: Use -O2 when building
  ose: Expand OSE docs
  ose: Add dummy ttsl driver
  ose: Cleanup cleanup of mutex selection defines
  ose: Polish mmap configure checks
  ose: Add ose specific x-compile flags
  ose: Updating fd_driver and spawn_driver for OSE
  ose: Updating event and signal API for OSE
  ose: Cleanup of mutex selection defines
  win32: Compile erl_log.exe
  ose: Remove uneccesary define
  ose: Fix ssl configure test for osx
  erts: Fix sys_msg_dispatcher assert
  ose: Fix broken doc links
  ose: Thread priorities configurable from lmconf
  ose: Yielding the cpu is done "the OSE" way
  ose: Start using ppdata for tse key
  ose: Do not use spinlocks on OSE
  ose: Fix support for crypto
  ...

Conflicts:
	lib/crypto/c_src/crypto.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lukas/ose/master/OTP-11334: (71 commits)
  erts: Fix unix efile assert
  ose: Use -O2 when building
  ose: Expand OSE docs
  ose: Add dummy ttsl driver
  ose: Cleanup cleanup of mutex selection defines
  ose: Polish mmap configure checks
  ose: Add ose specific x-compile flags
  ose: Updating fd_driver and spawn_driver for OSE
  ose: Updating event and signal API for OSE
  ose: Cleanup of mutex selection defines
  win32: Compile erl_log.exe
  ose: Remove uneccesary define
  ose: Fix ssl configure test for osx
  erts: Fix sys_msg_dispatcher assert
  ose: Fix broken doc links
  ose: Thread priorities configurable from lmconf
  ose: Yielding the cpu is done "the OSE" way
  ose: Start using ppdata for tse key
  ose: Do not use spinlocks on OSE
  ose: Fix support for crypto
  ...

Conflicts:
	lib/crypto/c_src/crypto.c
</pre>
</div>
</content>
</entry>
<entry>
<title>ose: Fix support for crypto</title>
<updated>2014-02-24T14:16:06+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang-solutions.com</email>
</author>
<published>2014-02-13T16:16:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6c4ee8337dff6e9b680dbff0796038948d718b5a'/>
<id>6c4ee8337dff6e9b680dbff0796038948d718b5a</id>
<content type='text'>
To enable it you have to modify the OSESSL variable in the
ose xcomp file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To enable it you have to modify the OSESSL variable in the
ose xcomp file.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix library application appup files</title>
<updated>2014-02-18T12:37:04+00:00</updated>
<author>
<name>Tobias Schlager</name>
<email>tobias.schlager@lindenbaum.eu</email>
</author>
<published>2014-02-18T11:29:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=a61f66e1157b0e77839b76ef416f436f28304579'/>
<id>a61f66e1157b0e77839b76ef416f436f28304579</id>
<content type='text'>
As discussed in issue #240 *all* OTP library applications use the '.*'
wildcard as up and down version. This makes library applications
always up- and downgradeable. Using the wildcard version obsoletes
all maintenance tasks regarding library applications' appup files.
Additionally, it prevents upgrade problems caused by automatically
included application dependencies when using reltool to create
releases. Missing copyright headers are now consistently present.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As discussed in issue #240 *all* OTP library applications use the '.*'
wildcard as up and down version. This makes library applications
always up- and downgradeable. Using the wildcard version obsoletes
all maintenance tasks regarding library applications' appup files.
Additionally, it prevents upgrade problems caused by automatically
included application dependencies when using reltool to create
releases. Missing copyright headers are now consistently present.
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Remove all processes from application crypto</title>
<updated>2014-01-17T16:30:20+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2014-01-17T16:30:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=b75d6d2bb74002024261303e0d9915efcaf091c0'/>
<id>b75d6d2bb74002024261303e0d9915efcaf091c0</id>
<content type='text'>
and make it into a pure library application.
The processes where a legacy from the time when crypto was
implemented with a driver.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and make it into a pure library application.
The processes where a legacy from the time when crypto was
implemented with a driver.
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: selective support for GF2m curves</title>
<updated>2014-01-13T12:00:24+00:00</updated>
<author>
<name>Andreas Schultz</name>
<email>aschultz@tpip.net</email>
</author>
<published>2013-12-30T10:54:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=8837c1be2ba8a3c123df3f5a87003daa9aac6539'/>
<id>8837c1be2ba8a3c123df3f5a87003daa9aac6539</id>
<content type='text'>
Newer OpenSSL versions allow to selectively disable GF2m elliptic curves.
Selectively enable GF2m curves is support for them is available.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Newer OpenSSL versions allow to selectively disable GF2m elliptic curves.
Selectively enable GF2m curves is support for them is available.
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: add brainpool (RFC 5639) curves</title>
<updated>2014-01-13T12:00:24+00:00</updated>
<author>
<name>Andreas Schultz</name>
<email>aschultz@tpip.net</email>
</author>
<published>2013-10-30T19:27:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c4a7fb842bcad38a979915cc830a77d526f5782e'/>
<id>c4a7fb842bcad38a979915cc830a77d526f5782e</id>
<content type='text'>
RFC-5649, Section 1, documents the advantages that these curves
might have over others (ANSI, SEC1/2)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
RFC-5649, Section 1, documents the advantages that these curves
might have over others (ANSI, SEC1/2)
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: move elitic curve definitions from OpenSSL built-ins to Erlang</title>
<updated>2014-01-13T12:00:24+00:00</updated>
<author>
<name>Andreas Schultz</name>
<email>aschultz@tpip.net</email>
</author>
<published>2013-10-30T18:58:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=23b298c13344f75ae1d9a17580dc53d0d50ef86b'/>
<id>23b298c13344f75ae1d9a17580dc53d0d50ef86b</id>
<content type='text'>
Decouple eliptic curve definition from OpenSSL and define them in
Erlang.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Decouple eliptic curve definition from OpenSSL and define them in
Erlang.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'sverk/yb/aes_ige_crypt'</title>
<updated>2013-12-03T18:35:22+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2013-12-03T18:34:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=e8b80236275858fe1bd71a14c570879373b600f2'/>
<id>e8b80236275858fe1bd71a14c570879373b600f2</id>
<content type='text'>
* sverk/yb/aes_ige_crypt:
  crypto: Update supports/0 for des3_cbf and aes_ige256
  crypto: Throw notsup for AES IGE if openssl older than 0.9.8c
  crypto: Add IGE mode for AES

OTP-11522
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* sverk/yb/aes_ige_crypt:
  crypto: Update supports/0 for des3_cbf and aes_ige256
  crypto: Throw notsup for AES IGE if openssl older than 0.9.8c
  crypto: Add IGE mode for AES

OTP-11522
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: Update supports/0 for des3_cbf and aes_ige256</title>
<updated>2013-11-27T17:05:52+00:00</updated>
<author>
<name>Sverker Eriksson</name>
<email>sverker@erlang.org</email>
</author>
<published>2013-11-27T17:05:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c95c2078a88d120f17dbd3120ac9036746fd3a41'/>
<id>c95c2078a88d120f17dbd3120ac9036746fd3a41</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
