<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/crypto/crypto.h, branch crash-pl</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=crash-pl</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=crash-pl'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2018-03-14T12:00:17Z</updated>
<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>Code modifications to integrate Ledger HW device into monero-wallet-cli.</title>
<updated>2018-03-04T11:54:53Z</updated>
<author>
<name>cslashm</name>
<email>cslashm@gmail.com</email>
</author>
<published>2018-02-20T16:01:27Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e745c1e38da8e54032660894bb2db0e9a49cccf2'/>
<id>urn:sha1:e745c1e38da8e54032660894bb2db0e9a49cccf2</id>
<content type='text'>
The basic approach it to delegate all sensitive data (master key, secret
ephemeral key, key derivation, ....) and related operations to the device.
As device has low memory, it does not keep itself the values
(except for view/spend keys) but once computed there are encrypted (with AES
are equivalent) and return back to monero-wallet-cli. When they need to be
manipulated by the device, they are decrypted on receive.

Moreover, using the client for storing the value in encrypted form limits
the modification in the client code. Those values are transfered from one
C-structure to another one as previously.

The code modification has been done with the wishes to be open to any
other hardware wallet. To achieve that a C++ class hw::Device has been
introduced. Two initial implementations are provided: the "default", which
remaps all calls to initial Monero code, and  the "Ledger", which delegates
all calls to Ledger device.
</content>
</entry>
<entry>
<title>Update 2018 copyright</title>
<updated>2018-01-26T15:03:20Z</updated>
<author>
<name>xmr-eric</name>
<email>eric@moneroeric.com</email>
</author>
<published>2018-01-07T05:05:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=18216f19dd479466cb7fd38f52d23bddfcfd4880'/>
<id>urn:sha1:18216f19dd479466cb7fd38f52d23bddfcfd4880</id>
<content type='text'>
</content>
</entry>
<entry>
<title>move memwipe to epee to avoid common&lt;-&gt;crypto circular dependencies</title>
<updated>2018-01-10T01:57:54Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-12-21T14:51:29Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=fdd4c5e5770c2765afd7734550dc80e31a480045'/>
<id>urn:sha1:fdd4c5e5770c2765afd7734550dc80e31a480045</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Scrub keys from memory just before scope end.</title>
<updated>2017-12-16T22:40:33Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-10-26T09:21:06Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=7193b89fe567327bb78f4c61c887b2e2fad2ed51'/>
<id>urn:sha1:7193b89fe567327bb78f4c61c887b2e2fad2ed51</id>
<content type='text'>
Partially implements #74.

Securely erases keys from memory after they are no longer needed. Might have a
performance impact, which I haven't measured (perf measurements aren't
generally reliable on laptops).

Thanks to @stoffu for the suggestion to specialize the pod_to_hex/hex_to_pod
functions. Using overloads + SFINAE instead generalizes it so other types can
be marked as scrubbed without adding more boilerplate.
</content>
</entry>
<entry>
<title>Subaddresses</title>
<updated>2017-10-07T04:06:21Z</updated>
<author>
<name>kenshi84</name>
<email>kenshi84@protonmail.ch</email>
</author>
<published>2017-02-19T02:42:10Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=53ad5a0f42174bca57e24485ef3d40e4b9cf5599'/>
<id>urn:sha1:53ad5a0f42174bca57e24485ef3d40e4b9cf5599</id>
<content type='text'>
</content>
</entry>
<entry>
<title>move checkpoints in a separate library</title>
<updated>2017-09-25T20:16:26Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-09-10T16:35:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5d65a75b69e0e83e69384461f26111666d6bf9ae'/>
<id>urn:sha1:5d65a75b69e0e83e69384461f26111666d6bf9ae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Signature proving payment to destination by only revealing key derivation, not the actual tx secret key</title>
<updated>2017-06-22T09:11:13Z</updated>
<author>
<name>stoffu</name>
<email>stoffu@protonmail.ch</email>
</author>
<published>2017-03-29T23:22:16Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=c9e0e944e900012b5789fd54bd8e455e399f94a0'/>
<id>urn:sha1:c9e0e944e900012b5789fd54bd8e455e399f94a0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>update copyright year, fix occasional lack of newline at line end</title>
<updated>2017-02-21T17:38:18Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2017-02-21T17:38:18Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=c3599fa7b94764d8f1cf7828a3f3a46067efe359'/>
<id>urn:sha1:c3599fa7b94764d8f1cf7828a3f3a46067efe359</id>
<content type='text'>
</content>
</entry>
</feed>
