1 2017-12-25 04:28:56 <spectra> |i think satoshi was a time traveler
 2 2017-12-25 04:29:28 <spectra> |he left behind a piece of advanced technology from the future - just like Arnold did at the end of Terminator 1
 3 2017-12-25 04:32:12 <Randolf> spectra|:  Someone reported on https://www.ufocentre.com/ recently that Satoshi was abducted by space aliens, and that's why nobody has heard from him.
 4 2017-12-25 04:32:36 <Randolf> The long-and-short of it is that nobody seems to know where he went.
 5 2017-12-25 04:32:39 <Randolf> ...or who he was.
 6 2017-12-25 04:34:39 <spectra> |certainly raises lots of questions
 7 2017-12-25 04:35:02 <spectra> |it's as if he knew how it would all unfold thus far
 8 2017-12-25 04:35:11 <spectra> |because if you were that guy, you would definitely want to be anonymous
 9 2017-12-25 04:35:19 <spectra> |(guy/gal/group)
10 2017-12-25 04:35:56 <spectra> |is lightning network going to activate soon?
11 2017-12-25 04:36:02 <spectra> |BTC has been getting so clogged
12 2017-12-25 04:37:33 <Randolf> "...as if he knew how it would all unfold...?"  I think people are reading way too much into it.
13 2017-12-25 04:38:28 <spectra> |true we are still at the beginning of the revolution
14 2017-12-25 04:38:42 <spectra> |he gave out the alert private key, right?
15 2017-12-25 04:38:45 <spectra> |to some other devs
16 2017-12-25 05:00:39 <phantomcircuit> Randolf, nah im satoshi
17 2017-12-25 05:04:37 <molz> satoshi, hi, please reset testnet3 and put the bugbunny in charge so we can get a block every min :D
18 2017-12-25 05:05:12 <eck> and make ppl mine segwit txns on testnet plz
19 2017-12-25 05:05:23 <molz> yes ^^
20 2017-12-25 12:01:21 <DSidH> arubi: https://file.io/Qb2Xj5 created some more test vectors for RFC6979
21 2017-12-25 12:04:14 <DSidH> hmm bad link. Try this one https://ufile.io/au3vm
22 2017-12-25 12:07:37 <echeveria> ^ malware
23 2017-12-25 12:08:39 <echeveria> nevermind, similar URl to something else in #bitcoin before.
24 2017-12-25 12:24:14 <arubi> too much js for me..  I'd love a pastebin of DeterministicK_test_vectors.txt if possible (or a gist)
25 2017-12-25 13:16:02 <DSidH> arubi: https://gist.github.com/scalahub/12b33f8f67994c9b044c933a6187cd09
26 2017-12-25 13:16:30 <DSidH> too large for pastebin
27 2017-12-25 13:18:29 <DSidH> would be good if these can be validated by somone else
28 2017-12-25 13:19:47 <DSidH> unfortunately message has got some commas, so you need to parse by first comma to get private key and then last comma to get sig
29 2017-12-25 13:20:43 <DSidH> (some messages)
30 2017-12-25 13:24:46 <arubi> cool, will check a bit later on
31 2017-12-25 13:48:21 <arubi> DSidH, so you're passing the raw text to rfc6979?  I believe you're supposed to pass the sha256 of it
32 2017-12-25 13:56:13 <arubi> setting my stuff to pass the raw message too for now, just to check if we agree on k
33 2017-12-25 14:05:47 <DSidH> I used the same vectors from one bitcointal thread
34 2017-12-25 14:06:00 <DSidH> Im passing sha256 of the text
35 2017-12-25 14:06:10 <DSidH> h1 = sha256(message)
36 2017-12-25 14:08:39 <DSidH> arubi: Scala code for the parama https://gist.github.com/scalahub/929bc2eed2bf4d1d06e10a5eeb0ed568
37 2017-12-25 14:09:22 <arubi> cool, we have 16 diffs in signatures.  I'm setting it mine up to show k
38 2017-12-25 14:12:36 <DSidH> def sign(msg:String):String = Hex.encodeBytes(signHash(sha256Bytes2Bytes(msg.getBytes)))
39 2017-12-25 14:12:42 <DSidH> this might help
40 2017-12-25 14:15:25 <arubi> ah no I'm just adapting my own stuff, will have output soon
41 2017-12-25 14:20:38 <DSidH> If needed, I can put k values too
42 2017-12-25 14:22:37 <arubi> https://gist.githubusercontent.com/fivepiece/cd199c4e14955e955140bcf1182e184a/raw/ab21e2a1e2734e0b325ebf8e2b5807b7e8c03ce8/results.txt , lines with '!=' are where we disagree
43 2017-12-25 14:25:03 <DSidH> hmm interesting. Let me doublecheck the signing algorithm and print k as well
44 2017-12-25 14:26:45 <arubi> ;;calc 14/462
45 2017-12-25 14:26:45 <gribble> 0.030303030303
46 2017-12-25 14:28:10 <arubi> a lot of times it's some edge case in the numbers that has "this much" chance of happening.  I also wouldn't be surprised if it's an issue on my side :)
47 2017-12-25 14:32:25 <DSidH> arubi: I had a small bug (should not affect): was not doing h mod q in signing step
48 2017-12-25 14:32:29 <DSidH> new test https://gist.github.com/scalahub/ea370145455837030a82ce1cf86e05c0
49 2017-12-25 14:32:39 <DSidH> but I noticed some differences in the messages:
50 2017-12-25 14:32:59 <DSidH> mine -> The best laid plans of mice and men (often go astray).
51 2017-12-25 14:33:08 <DSidH> yours -> The best laid plans of mice and men often go astray.
52 2017-12-25 14:33:59 <arubi> ah, I know what happened then
53 2017-12-25 14:34:21 <arubi> I probably removed all parentheses instead of just those wrapping the vector
54 2017-12-25 14:35:35 <arubi> trying again
55 2017-12-25 14:41:02 <arubi> all passed
56 2017-12-25 14:41:17 <DSidH> ty for confirming :)
57 2017-12-25 14:41:28 <arubi> yw, always good to have more vectors