<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/crypto, branch v0.18.1.2</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.18.1.2</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.18.1.2'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2022-05-10T21:47:13Z</updated>
<entry>
<title>Merge pull request #8262</title>
<updated>2022-05-10T21:47:13Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2022-05-10T21:47:13Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=156151396e12043fd3ee0307a4c46522bb515ca0'/>
<id>urn:sha1:156151396e12043fd3ee0307a4c46522bb515ca0</id>
<content type='text'>
268a039 Optimized keccak implementation (SChernykh)
</content>
</entry>
<entry>
<title>Optimized keccak implementation</title>
<updated>2022-04-18T08:01:13Z</updated>
<author>
<name>SChernykh</name>
<email>sergey.v.chernykh@gmail.com</email>
</author>
<published>2022-04-16T09:48:37Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=268a0393e9e7e02c5f2c41dc0137540cbf61ab76'/>
<id>urn:sha1:268a0393e9e7e02c5f2c41dc0137540cbf61ab76</id>
<content type='text'>
All tests were conducted on the same PC (Ryzen 5 5600X running at fixed 4.65 GHz).

Before:
test_cn_fast_hash&lt;32&gt; (100000 calls) - OK: 1 us/call
test_cn_fast_hash&lt;16384&gt; (1000 calls) - OK: 164 us/call

After:
test_cn_fast_hash&lt;32&gt; (100000 calls) - OK: 0 us/call
test_cn_fast_hash&lt;16384&gt; (1000 calls) - OK: 31 us/call

More than 5 times speedup for cn_fast_hash.

Also noticed consistent 1-2% improvement in test_construct_tx results.
</content>
</entry>
<entry>
<title>Add view tags to outputs to reduce wallet scanning time</title>
<updated>2022-04-18T07:49:53Z</updated>
<author>
<name>j-berman</name>
<email>justinberman@protonmail.com</email>
</author>
<published>2021-11-15T13:23:53Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ea87b30f8907ee11252433811e7a7d0c46758cca'/>
<id>urn:sha1:ea87b30f8907ee11252433811e7a7d0c46758cca</id>
<content type='text'>
Implements view tags as proposed by @UkoeHB in MRL issue
https://github.com/monero-project/research-lab/issues/73

At tx construction, the sender adds a 1-byte view tag to each
output. The view tag is derived from the sender-receiver
shared secret. When scanning for outputs, the receiver can
check the view tag for a match, in order to reduce scanning
time. When the view tag does not match, the wallet avoids the
more expensive EC operations when deriving the output public
key using the shared secret.
</content>
</entry>
<entry>
<title>CMake: Add missing headers via monero_find_all_headers macro</title>
<updated>2022-04-06T06:12:44Z</updated>
<author>
<name>mj-xmr</name>
<email>mjxmr@protonmail.com</email>
</author>
<published>2022-03-05T09:37:04Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=4db6aed98cc7ff713fc58b9054412ed734b01aba'/>
<id>urn:sha1:4db6aed98cc7ff713fc58b9054412ed734b01aba</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Copyright: Update to 2022</title>
<updated>2022-03-04T05:59:20Z</updated>
<author>
<name>mj-xmr</name>
<email>mjxmr@protonmail.com</email>
</author>
<published>2022-03-01T11:16:17Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=da9aa1f7f802552b9de459f331a2f39c84898009'/>
<id>urn:sha1:da9aa1f7f802552b9de459f331a2f39c84898009</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #8052</title>
<updated>2022-03-02T23:52:51Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2022-03-02T23:52:51Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=abae63c37dfcddbfcae3260edab4a1f939831390'/>
<id>urn:sha1:abae63c37dfcddbfcae3260edab4a1f939831390</id>
<content type='text'>
c36ea26 fix ge_p3_is_point_at_infinity(), which is evaluating field elements that haven't been reduced by the field order (koe)
</content>
</entry>
<entry>
<title>Merge pull request #7877</title>
<updated>2022-03-02T23:51:54Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2022-03-02T23:51:54Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5eaa4434e85ff979b0881b428785bba6faaf0518'/>
<id>urn:sha1:5eaa4434e85ff979b0881b428785bba6faaf0518</id>
<content type='text'>
e08abaa multisig key exchange update and refactor (koe)
</content>
</entry>
<entry>
<title>multisig key exchange update and refactor</title>
<updated>2022-02-22T22:37:42Z</updated>
<author>
<name>koe</name>
<email>ukoe@protonmail.com</email>
</author>
<published>2021-08-03T04:27:43Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e08abaa43f2c534bf21c0ed59ba325538502007e'/>
<id>urn:sha1:e08abaa43f2c534bf21c0ed59ba325538502007e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>crypto: fix constant randomx exceptions in large page allocator</title>
<updated>2022-02-19T13:15:10Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2020-12-05T21:05:21Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=06e6c8bf4a0f5856eaf7bfaf9c347376f9256fe4'/>
<id>urn:sha1:06e6c8bf4a0f5856eaf7bfaf9c347376f9256fe4</id>
<content type='text'>
If allocating large pages fails, we don't try again.
This has the obvious drawback of not being able to use large pages
if they fail once.
</content>
</entry>
<entry>
<title>fix ge_p3_is_point_at_infinity(), which is evaluating field elements that haven't been reduced by the field order</title>
<updated>2022-01-25T13:14:46Z</updated>
<author>
<name>koe</name>
<email>ukoe@protonmail.com</email>
</author>
<published>2021-11-09T00:14:17Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=c36ea26e5c6b94f107cc1aeb02a45cfc5a7c38ef'/>
<id>urn:sha1:c36ea26e5c6b94f107cc1aeb02a45cfc5a7c38ef</id>
<content type='text'>
</content>
</entry>
</feed>
