<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/cryptonote_core/cryptonote_tx_utils.cpp, branch v0.16.0.3</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.16.0.3</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.16.0.3'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2020-05-01T20:20:05Z</updated>
<entry>
<title>Merge pull request #6436</title>
<updated>2020-05-01T20:20:05Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2020-05-01T20:20:05Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=443f5c6bdafbd749534da3d85ff1b48d96106747'/>
<id>urn:sha1:443f5c6bdafbd749534da3d85ff1b48d96106747</id>
<content type='text'>
688a3e8 Add timelock verification on device (cslashm)
</content>
</entry>
<entry>
<title>Add timelock verification on device</title>
<updated>2020-04-08T09:12:32Z</updated>
<author>
<name>cslashm</name>
<email>cslashm@gmail.com</email>
</author>
<published>2020-04-03T20:56:55Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=688a3e87e712123d182ae6715610c461988f9e74'/>
<id>urn:sha1:688a3e87e712123d182ae6715610c461988f9e74</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove empty statements</title>
<updated>2020-02-17T16:55:15Z</updated>
<author>
<name>Interchained</name>
<email>president@worldvaporexpo.com</email>
</author>
<published>2020-02-14T23:35:53Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=c61abf87c0aa4157824326ff80670ad3ccc9e470'/>
<id>urn:sha1:c61abf87c0aa4157824326ff80670ad3ccc9e470</id>
<content type='text'>
Cleaning up a little around the code base.
</content>
</entry>
<entry>
<title>cryptonote: untangle dependency from miner to blockchain</title>
<updated>2019-10-31T01:06:42Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2019-10-31T01:05:58Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ebc6ce44f407fab07955fc230f4cab59742fd959'/>
<id>urn:sha1:ebc6ce44f407fab07955fc230f4cab59742fd959</id>
<content type='text'>
It causes link errors at least on mac
</content>
</entry>
<entry>
<title>Add hmac over encrypted value during transaction</title>
<updated>2019-10-03T14:01:34Z</updated>
<author>
<name>cslashm</name>
<email>cslashm@gmail.com</email>
</author>
<published>2019-09-25T12:31:14Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=d25acd7a1dbd05b24fba13fc4910886948ab90ba'/>
<id>urn:sha1:d25acd7a1dbd05b24fba13fc4910886948ab90ba</id>
<content type='text'>
</content>
</entry>
<entry>
<title>RandomX integration</title>
<updated>2019-09-25T20:29:42Z</updated>
<author>
<name>Howard Chu</name>
<email>hyc@symas.com</email>
</author>
<published>2019-04-23T19:32:27Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=81c2ad6d5b17cf280a4a55fd6159e8dde423f5a8'/>
<id>urn:sha1:81c2ad6d5b17cf280a4a55fd6159e8dde423f5a8</id>
<content type='text'>
Support RandomX PoW algorithm
</content>
</entry>
<entry>
<title>Changed the use of boost:value_initialized for C++ list initializer</title>
<updated>2019-09-02T12:16:29Z</updated>
<author>
<name>Jesus Ramirez</name>
<email>jesus.rami.serra@gmail.com</email>
</author>
<published>2019-06-26T14:39:41Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=2cd4fd8972620737956aeeb4262209f8a446e3ee'/>
<id>urn:sha1:2cd4fd8972620737956aeeb4262209f8a446e3ee</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace std::random_shuffle with std::shuffle</title>
<updated>2019-08-15T14:33:15Z</updated>
<author>
<name>Tom Smeding</name>
<email>tom.smeding@gmail.com</email>
</author>
<published>2019-07-03T09:05:01Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=7b9a420787c71624ff0e9c6bcfe1e72c74feb677'/>
<id>urn:sha1:7b9a420787c71624ff0e9c6bcfe1e72c74feb677</id>
<content type='text'>
According to [1], std::random_shuffle is deprecated in C++14 and removed
in C++17. Since std::shuffle is available since C++11 as a replacement
and monero already requires C++11, this is a good replacement.

A cryptographically secure random number generator is used in all cases
to prevent people from perhaps copying an insecure std::shuffle call
over to a place where a secure one would be warranted. A form of
defense-in-depth.

[1]: https://en.cppreference.com/w/cpp/algorithm/random_shuffle
</content>
</entry>
<entry>
<title>Update 2019 copyright</title>
<updated>2019-03-05T21:05:34Z</updated>
<author>
<name>binaryFate</name>
<email>binaryfate@users.noreply.github.com</email>
</author>
<published>2019-03-05T21:05:34Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1f2930ce0bec07e28958c059444151ad4968e1e6'/>
<id>urn:sha1:1f2930ce0bec07e28958c059444151ad4968e1e6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>New scheme key destination contrfol</title>
<updated>2019-02-08T16:02:44Z</updated>
<author>
<name>cslashm</name>
<email>cslashm@gmail.com</email>
</author>
<published>2018-12-11T09:20:21Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=460da140ec1e1b22e3ac1e371abd2368c3bda5f5'/>
<id>urn:sha1:460da140ec1e1b22e3ac1e371abd2368c3bda5f5</id>
<content type='text'>
Implies protocol version management.
</content>
</entry>
</feed>
