<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/tests/unit_tests/epee_utils.cpp, branch v0.14.1.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.14.1.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.14.1.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2019-03-05T21:05:34Z</updated>
<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>epee: add SSL support</title>
<updated>2019-03-05T13:16:08Z</updated>
<author>
<name>Martijn Otto</name>
<email>git@martijnotto.nl</email>
</author>
<published>2018-06-14T22:44:48Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=057c279cb4d5c16990570d281bd1bc568796cbb2'/>
<id>urn:sha1:057c279cb4d5c16990570d281bd1bc568796cbb2</id>
<content type='text'>
RPC connections now have optional tranparent SSL.

An optional private key and certificate file can be passed,
using the --{rpc,daemon}-ssl-private-key and
--{rpc,daemon}-ssl-certificate options. Those have as
argument a path to a PEM format private private key and
certificate, respectively.
If not given, a temporary self signed certificate will be used.

SSL can be enabled or disabled using --{rpc}-ssl, which
accepts autodetect (default), disabled or enabled.

Access can be restricted to particular certificates using the
--rpc-ssl-allowed-certificates, which takes a list of
paths to PEM encoded certificates. This can allow a wallet to
connect to only the daemon they think they're connected to,
by forcing SSL and listing the paths to the known good
certificates.

To generate long term certificates:

openssl genrsa -out /tmp/KEY 4096
openssl req -new -key /tmp/KEY -out /tmp/REQ
openssl x509 -req -days 999999 -sha256 -in /tmp/REQ -signkey /tmp/KEY -out /tmp/CERT

/tmp/KEY is the private key, and /tmp/CERT is the certificate,
both in PEM format. /tmp/REQ can be removed. Adjust the last
command to set expiration date, etc, as needed. It doesn't
make a whole lot of sense for monero anyway, since most servers
will run with one time temporary self signed certificates anyway.

SSL support is transparent, so all communication is done on the
existing ports, with SSL autodetection. This means you can start
using an SSL daemon now, but you should not enforce SSL yet or
nothing will talk to you.
</content>
</entry>
<entry>
<title>Adding initial support for broadcasting transactions over Tor</title>
<updated>2019-01-28T23:56:33Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2018-12-16T17:57:44Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=973403bc9f54ab0722b67a3c76ab6e7bafbfeedc'/>
<id>urn:sha1:973403bc9f54ab0722b67a3c76ab6e7bafbfeedc</id>
<content type='text'>
  - Support for ".onion" in --add-exclusive-node and --add-peer
  - Add --anonymizing-proxy for outbound Tor connections
  - Add --anonymous-inbounds for inbound Tor connections
  - Support for sharing ".onion" addresses over Tor connections
  - Support for broadcasting transactions received over RPC exclusively
    over Tor (else broadcast over public IP when Tor not enabled).
</content>
</entry>
<entry>
<title>epee: speedup word/number matching</title>
<updated>2019-01-16T19:59:40Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-12-26T09:46:41Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=21777daf6e03691a682018ef5b6b3c6a1cac1b3e'/>
<id>urn:sha1:21777daf6e03691a682018ef5b6b3c6a1cac1b3e</id>
<content type='text'>
Number matching semantics are slightly changed: since this is used
as a filter to check whether a number is signed and/or floating
point, we can speed this up further. strto* functions are called
afterwards and will error out where necessary. We now also accept
numbers like .4 which were not accepted before.

The strto* calls on a boost::string_ref will not access unallocated
memory since the parsers always stop at the first bad character,
and the original string is zero terminated.

in arbitrary time measurement units for some arbitrary test case:

match_number2: 235 -&gt; 70
match_word2: 330 -&gt; 108
</content>
</entry>
<entry>
<title>epee: better network buffer data structure</title>
<updated>2018-12-23T16:46:07Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-12-06T18:04:33Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=85665003a7d9e013b1d7df5578dbf47ddf81b236'/>
<id>urn:sha1:85665003a7d9e013b1d7df5578dbf47ddf81b236</id>
<content type='text'>
avoids pointless allocs and memcpy
</content>
</entry>
<entry>
<title>unit_tests: add some hex parsing test for non hex input</title>
<updated>2018-11-15T23:34:15Z</updated>
<author>
<name>xiphon</name>
<email>xiphon@protonmail.com</email>
</author>
<published>2018-11-15T23:32:42Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=b36353e2681825474a9ddc6a6ccfe6098995a9f5'/>
<id>urn:sha1:b36353e2681825474a9ddc6a6ccfe6098995a9f5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unit_tests: add a test for parse_hexstr_to_binbuff</title>
<updated>2018-11-15T23:34:15Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-11-15T12:40:55Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=6671110ca3db97f1169dd853fbb22ad725708e4a'/>
<id>urn:sha1:6671110ca3db97f1169dd853fbb22ad725708e4a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Added features to epee::span&lt;T&gt; :</title>
<updated>2018-08-04T00:33:07Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2018-08-02T03:08:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=26a42fe54ae0a7e6f348c205cfc7d7b4bf3c012b'/>
<id>urn:sha1:26a42fe54ae0a7e6f348c205cfc7d7b4bf3c012b</id>
<content type='text'>
  - Support for classes
  - Added `remove_prefix` function
  - Added `to_mut_span` and `as_mut_byte_span`
</content>
</entry>
<entry>
<title>unit_tests: add tests for local IP range detection</title>
<updated>2018-06-01T20:47:25Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-06-01T20:10:20Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5db9e3c28e6aa96b673dbde6cf0e4eb5de8771de'/>
<id>urn:sha1:5db9e3c28e6aa96b673dbde6cf0e4eb5de8771de</id>
<content type='text'>
</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>
</feed>
