< Pink_>
Mine calico mines place claim with official legal waiver use bullet point 1. Exact location 2. Fees. 3. Degree. 5. License per-tax,.
< Pink_>
Compliance
< Pink_>
With the act of 1933
< Pink_>
Use bitcoin wallet JEFFREY HENRY BANKS
< Pink_>
YES
< provoostenator>
I think something recently broke the MSVC x64 build. See #15638 for errors. It's also failing for me as early as d358466de15ef29c1d2bccb9aebab360d574d1d0 (#10973). Will try older...
< bitcoin-git>
[bitcoin] MarcoFalke opened pull request #15668: p2p: Slightly more private initial tx relay (master...1903-p2pSlightlyPrivateTxRelay) https://github.com/bitcoin/bitcoin/pull/15668
< bitcoin-git>
[bitcoin] torkelrogstad opened pull request #15669: rpc: Fix help text for signtransactionwithXXX (master...signrawtx-rpc-help) https://github.com/bitcoin/bitcoin/pull/15669
< dongcarl>
Is it intentional that `GetLocal` doesn't check `nReachability` > 0? Since GetReachabilityFrom returns 0 to represent unreachable, it would seem that `GetLocal` shouldn't in-out return those local services even if they're all we have?
< bitcoin-git>
[bitcoin] dongcarl opened pull request #15671: net: Don't return unreachable local addresses for peer (master...2019-03-fix-getlocal) https://github.com/bitcoin/bitcoin/pull/15671
< jonasschnelli>
sipa: looks like the AEAD is really faster the SSE dbl-sha256
< jonasschnelli>
Not sure but it looks like the primitive can even be further optimized
< jonasschnelli>
(at least its faster on my i7 and on the ARM64)
< sipa>
jonasschnelli: absolutely
< sipa>
it's fairly easy to make use of sse/avx for chacha
< jonasschnelli>
Good to know
< sipa>
and poly1305 can used 64x64->128 bit multiplies if your system has those (x86_64 does)
< jonasschnelli>
What I really don't get is why the openSSH version of the AEAD doesn't cache the AAD chacha keystream. Because every decryption goes a getLength in advance (using the same keystream)
< jonasschnelli>
Regardless of the multiple use of the stream
< jonasschnelli>
But maybe they don't deal with that many small packets
< sipa>
i think they do, but the performance of those doesn't really matter
< sipa>
as they're generally just human keystrokes and reponses to them
< jonasschnelli>
but scp!
< jonasschnelli>
(which is slow regardless)
< sipa>
for mass transfers you don't have small packets