Ludovic Barman

Results 12 comments of Ludovic Barman

I license past and future contributions under the dual MIT/Apache-2.0 license, allowing licensees to choose either at their option.

Hi all, > Is the "ca" profile used by -initca at all? It wasn't; here's a PR to address this https://github.com/cloudflare/cfssl/pull/1102 If it helps, I also confirm that passing the...

Hello @lgarofalo, is anyone working on this (perhaps internally)? I'd like to start investigating this feature, just to avoid parallel work :)

Thanks a lot @junchen108 for the analysis. I will try to confirm

Each connection has its own randomID generated by sampling 32 random bits (one `int32`). ``` Basically there are only 9 * 10 * 10 * 10 = 9000 possible IDs,...

Right, nice catch ! I let you do the change since you're already working on the 1st point you mentioned.

Moved to V2, since 1) either this is already the case, or 2) the SOCKS protocol re-tries by itself (essentially, browsing works now). To be checked later.

We need the kyber v2 library to support it on `gopkg.in`, then courtesy from Alejandro: ``` package main import ( "encoding/hex" "fmt" "github.com/dedis/kyber" "github.com/dedis/kyber/proof" "github.com/dedis/kyber/shuffle" "github.com/dedis/kyber/suites" "github.com/lbarman/prifi/prifi-lib/crypto" //"gopkg.in/dedis/kyber.v2" //"gopkg.in/dedis/kyber.v2/suites" //"gopkg.in/dedis/kyber.v2/proof/dleq"...

Required for https://github.com/lbarman/prifi/issues/140

Update: it's a concurrency issue. Thread 1 is still processing a message, timeout happens on Thread 2, which tries to call "Stop()" on thread 1 ``` 1 @ 0x545ee8 0x545cf0...