--- Day changed Tue Jan 26 2016 02:19 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 02:40 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Quit: Leaving.] 02:45 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 03:00 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Quit: Leaving.] 03:04 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 03:08 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Client Quit] 04:25 -!- jtimon [~quassel@126.31.134.37.dynamic.jazztel.es] has joined #secp256k1 04:35 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 05:12 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Quit: Leaving.] 05:18 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 05:29 -!- fkhan [~weechat@unaffiliated/loteriety] has quit [Ping timeout: 240 seconds] 05:40 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Quit: Leaving.] 05:44 -!- jtimon [~quassel@126.31.134.37.dynamic.jazztel.es] has quit [Remote host closed the connection] 05:46 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 06:03 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Quit: Leaving.] 06:13 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 06:22 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Quit: Leaving.] 06:24 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 07:03 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Quit: Leaving.] 07:08 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 07:18 -!- jtimon [~quassel@126.31.134.37.dynamic.jazztel.es] has joined #secp256k1 07:28 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Quit: Leaving.] 07:34 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 07:34 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Client Quit] 08:09 -!- fkhan [weechat@gateway/vpn/mullvad/x-iazkszllpqwnufyx] has joined #secp256k1 08:16 -!- jtimon [~quassel@126.31.134.37.dynamic.jazztel.es] has quit [Remote host closed the connection] 08:22 -!- jtimon [~quassel@126.31.134.37.dynamic.jazztel.es] has joined #secp256k1 08:32 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 08:32 < jonasschnelli> Hmm... 08:33 < jonasschnelli> I'm parsing a compact signature with secp256k1_ecdsa_signature_parse_compact(), then serialize it to DER (secp256k1_ecdsa_signature_serialize_der)... 08:33 < jonasschnelli> But my bitcoind responses with: non-mandatory-script-verify-flag 08:33 < jonasschnelli> I was expecting secp256k1_ecdsa_signature_serialize_der respects the low_s change? 08:34 < jonasschnelli> (maybe I need to update libsecp) 08:34 < sipa> serialize just serializes 08:34 < sipa> changing the s value is not part of serialization 08:34 < sipa> if you want that, there is a separate function 08:35 * jonasschnelli is checking the header 08:35 -!- fkhan [weechat@gateway/vpn/mullvad/x-iazkszllpqwnufyx] has quit [Ping timeout: 240 seconds] 08:35 < sipa> secp256k1_ecdsa_signature_normalize 08:36 < jonasschnelli> sipa! Thank you so much... saved my day. 08:48 -!- fkhan [weechat@gateway/vpn/mullvad/x-ukgqlaaamwglhafr] has joined #secp256k1 09:13 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Quit: Leaving.] 09:19 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-rlfbzhglvkibbllt] has joined #secp256k1 09:20 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has joined #secp256k1 09:20 -!- fkhan [weechat@gateway/vpn/mullvad/x-ukgqlaaamwglhafr] has quit [Ping timeout: 240 seconds] 10:18 -!- GAit [~GAit@2-228-102-98.ip191.fastwebnet.it] has quit [Quit: Leaving.] 11:07 < arubi> I'll ask here since I don't know of a better channel, did anyone look at this: https://eprint.iacr.org/2016/058.pdf (.pdf warning blabla..)? two notable quotes: 11:08 < arubi> "Thus, in order the DSA schemes to be protected from our[s] attacks the secret, the ephemeral keys and their modular inverses must have the same size as q." 11:08 < arubi> "Note that in the case where the secret, the ephemeral keys and their modular inverses have the same size as q, our attacks cannot be applied." 11:10 < arubi> I'm trying out the example on p. 11. I can get to C1=.. and D1=.. , but then 'y + Dix + Ci ≡ 0 (mod q); (i = 1, 2, 3)' doen't hold.. 11:14 < arubi> hm. also, I can only recreate the signature for z1,k1,d successfully. the others are not the same. probably something broken on my end. if someone's brave enough to try it, do let me know please. I've already invested hours.. 11:20 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 11:20 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has joined #secp256k1 11:21 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 12:06 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Quit: Leaving.] 12:15 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 12:30 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-rlfbzhglvkibbllt] has quit [Ping timeout: 264 seconds] 12:50 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-ygojbeknmhjovatd] has joined #secp256k1 12:54 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Quit: Leaving.] 12:55 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 12:58 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Client Quit] 13:05 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 13:22 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-ygojbeknmhjovatd] has quit [Ping timeout: 265 seconds] 13:35 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-vudjoqgxntzmbrhg] has joined #secp256k1 14:25 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-vudjoqgxntzmbrhg] has quit [Ping timeout: 245 seconds] 14:39 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Quit: Leaving.] 14:39 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-aolkrxwboflldmzn] has joined #secp256k1 14:41 -!- arubi [~ese168@unaffiliated/arubi] has quit [Ping timeout: 260 seconds] 14:43 -!- arubi [~ese168@unaffiliated/arubi] has joined #secp256k1 14:47 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 14:56 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Quit: Leaving.] 15:06 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 15:49 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Quit: Leaving.] 15:57 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has joined #secp256k1 17:32 -!- GAit [~GAit@2-230-161-158.ip202.fastwebnet.it] has quit [Quit: Leaving.] 22:42 -!- arubi [~ese168@unaffiliated/arubi] has quit [Ping timeout: 256 seconds] 22:52 -!- arubi [~ese168@unaffiliated/arubi] has joined #secp256k1 23:01 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-aolkrxwboflldmzn] has quit [Ping timeout: 240 seconds] 23:15 -!- fkhan_ [weechat@gateway/vpn/mullvad/x-iokfjphtdegqubbl] has joined #secp256k1