<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/contrib/epee/include/net/connection_basic.hpp, branch v0.15.0.1</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.15.0.1</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.15.0.1'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2019-07-17T14:22:37Z</updated>
<entry>
<title>Added support for "noise" over I1P/Tor to mask Tx transmission.</title>
<updated>2019-07-17T14:22:37Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2019-05-16T20:34:22Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=3b24b1d082da28da15dc5e3aeaa0ebebe7758f2f'/>
<id>urn:sha1:3b24b1d082da28da15dc5e3aeaa0ebebe7758f2f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add ref-counted buffer byte_slice. Currently used for sending TCP data.</title>
<updated>2019-07-16T16:30:35Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2019-05-11T15:38:35Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=bdfc63ae4ddc52e2dece2a031a91509418206cb0'/>
<id>urn:sha1:bdfc63ae4ddc52e2dece2a031a91509418206cb0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove obsolete save_graph skeleton code</title>
<updated>2019-05-10T14:17:18Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2019-05-09T17:16:26Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=6abaaaa994c79cbeea37f6b0079ca6b24ecef3a5'/>
<id>urn:sha1:6abaaaa994c79cbeea37f6b0079ca6b24ecef3a5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Pass SSL arguments via one class and use shared_ptr instead of reference</title>
<updated>2019-04-07T04:44:37Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2019-03-15T04:03:32Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=21eb1b0725717ad013d3e2b00fbfc3b84ad04699'/>
<id>urn:sha1:21eb1b0725717ad013d3e2b00fbfc3b84ad04699</id>
<content type='text'>
</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>epee: add SSL support</title>
<updated>2019-02-02T20:05:33Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</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=24569454086a366e0bd0cd9b33b0b34661fe7af8'/>
<id>urn:sha1:24569454086a366e0bd0cd9b33b0b34661fe7af8</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>Removed a lot of unnecessary includes</title>
<updated>2018-11-15T16:29:34Z</updated>
<author>
<name>Martijn Otto</name>
<email>git@martijnotto.nl</email>
</author>
<published>2018-11-15T16:29:34Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=bd98e99c8095cf05c4d3282c888a87745ad1c559'/>
<id>urn:sha1:bd98e99c8095cf05c4d3282c888a87745ad1c559</id>
<content type='text'>
</content>
</entry>
<entry>
<title>connection_basic: remove unused floating time start time</title>
<updated>2018-10-02T17:28:46Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-10-02T09:54:38Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=758d7684863b8ff001758c4360ed7087245eac03'/>
<id>urn:sha1:758d7684863b8ff001758c4360ed7087245eac03</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>
