<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/crypto, branch v0.12.2.0</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=v0.12.2.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.12.2.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2018-05-13T17:17:36Z</updated>
<entry>
<title>crypto: more places needing fixing for GCC 8.1</title>
<updated>2018-05-13T17:17:36Z</updated>
<author>
<name>moneroexamples</name>
<email>moneroexamples@tuta.io</email>
</author>
<published>2018-05-13T17:12:11Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=96405bcaa03b2151a94b20c16945574710e53993'/>
<id>urn:sha1:96405bcaa03b2151a94b20c16945574710e53993</id>
<content type='text'>
</content>
</entry>
<entry>
<title>chacha: fix build with GCC 8.1</title>
<updated>2018-05-13T17:17:34Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-05-12T09:32:21Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=86c63b8e15c291e5760b20c4ee5c227aef680603'/>
<id>urn:sha1:86c63b8e15c291e5760b20c4ee5c227aef680603</id>
<content type='text'>
</content>
</entry>
<entry>
<title>slow-hash: fix memory leak for Windows /karbowanec#41</title>
<updated>2018-04-24T11:47:29Z</updated>
<author>
<name>aivve</name>
<email>maksymivv@gmail.com</email>
</author>
<published>2018-04-24T09:47:13Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b1a9e97b2dab7a843571c674b242926d51362a6e'/>
<id>urn:sha1:b1a9e97b2dab7a843571c674b242926d51362a6e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>chacha: call prehashed version explicitly as generate_chacha_key_prehashed</title>
<updated>2018-03-14T12:00:17Z</updated>
<author>
<name>stoffu</name>
<email>stoffu@protonmail.ch</email>
</author>
<published>2018-03-05T09:24:11Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=7dfa5e9e6e05fb2b8bb346d92f2a22229ef495c8'/>
<id>urn:sha1:7dfa5e9e6e05fb2b8bb346d92f2a22229ef495c8</id>
<content type='text'>
hash: add prehashed version cn_slow_hash_prehashed
slow-hash: let cn_slow_hash take 4th parameter for deciding prehashed or not
slow-hash: add support for prehashed version for the other 3 platforms
</content>
</entry>
<entry>
<title>crypto: revert odd namespace changes made in #3303</title>
<updated>2018-03-14T12:00:17Z</updated>
<author>
<name>stoffu</name>
<email>stoffu@protonmail.ch</email>
</author>
<published>2018-03-05T08:20:36Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b2d23b189efaafe89082a9f14e376c2cbad42f40'/>
<id>urn:sha1:b2d23b189efaafe89082a9f14e376c2cbad42f40</id>
<content type='text'>
</content>
</entry>
<entry>
<title>device: untangle cyclic depenency</title>
<updated>2018-03-14T12:00:15Z</updated>
<author>
<name>stoffu</name>
<email>stoffu@protonmail.ch</email>
</author>
<published>2018-03-05T07:16:30Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=27a196b1268718dbc41e308c93b35c58f2da2eb4'/>
<id>urn:sha1:27a196b1268718dbc41e308c93b35c58f2da2eb4</id>
<content type='text'>
When #3303 was merged, a cyclic dependency chain was generated:

    libdevice &lt;- libcncrypto &lt;- libringct &lt;- libdevice

This was because libdevice needs access to a set of basic crypto operations
implemented in libringct such as scalarmultBase(), while libringct also needs
access to abstracted crypto operations implemented in libdevice such as
ecdhEncode(). To untangle this cyclic dependency chain, this patch splits libringct
into libringct_basic and libringct, where the basic crypto ops previously in
libringct are moved into libringct_basic. The cyclic dependency is now resolved
thanks to this separation:

    libcncrypto &lt;- libringct_basic &lt;- libdevice &lt;- libcryptonote_basic &lt;- libringct

This eliminates the need for crypto_device.cpp and rctOps_device.cpp.

Also, many abstracted interfaces of hw::device such as encrypt_payment_id() and
get_subaddress_secret_key() were previously implemented in libcryptonote_basic
(cryptonote_format_utils.cpp) and were then called from hw::core::device_default,
which is odd because libdevice is supposed to be independent of libcryptonote_basic.
Therefore, those functions were moved to device_default.cpp.
</content>
</entry>
<entry>
<title>device: made function prototypes consistent with pre-#3303 codebase</title>
<updated>2018-03-14T12:00:06Z</updated>
<author>
<name>stoffu</name>
<email>stoffu@protonmail.ch</email>
</author>
<published>2018-03-05T05:24:48Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=c9b38b4765a7eea11bb57b4fce1694c382c80936'/>
<id>urn:sha1:c9b38b4765a7eea11bb57b4fce1694c382c80936</id>
<content type='text'>
</content>
</entry>
<entry>
<title>slow-hash: fix uint64 type typo</title>
<updated>2018-03-07T09:48:58Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-03-07T00:44:30Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=04a0cc89cf30f5c5c9a5c88c5e3c1b10a2c0f7e4'/>
<id>urn:sha1:04a0cc89cf30f5c5c9a5c88c5e3c1b10a2c0f7e4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tweaks to the monerov1 cryptonight algorithm</title>
<updated>2018-03-05T18:18:45Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2018-02-27T23:45:32Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e136bc6b8a480426f7565b721ca2ccf75547af62'/>
<id>urn:sha1:e136bc6b8a480426f7565b721ca2ccf75547af62</id>
<content type='text'>
</content>
</entry>
<entry>
<title>slow-hash: optimized version</title>
<updated>2018-03-05T18:18:43Z</updated>
<author>
<name>SChernykh</name>
<email>SChernykh@users.noreply.github.com</email>
</author>
<published>2018-02-16T09:11:54Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=d58c9ec99c3187ea41b594e9e5ae885f456f00fc'/>
<id>urn:sha1:d58c9ec99c3187ea41b594e9e5ae885f456f00fc</id>
<content type='text'>
</content>
</entry>
</feed>
