Hello,I've been looking around and I haven't been able to find a cryptographically secure pseudorandom number generator (CSPRNG) for GO. I did see a thread about crypto/Fortuna but it seems that it has been discontinued for over 2 years. I would use crypt/rand but it's unclear how I can seed it in a way that is shareable (i.e., if I were to share the seed with someone else, they should be able to use it to generate the same sequence of random numbers). I guess my question really is: is there anyone out there who's implemented a CSPRNG? if not, I guess I'll just update the old fortuna code and see if I can get it to work.
I've been looking around and I haven't been able to find a cryptographically secure pseudorandom number generator (CSPRNG) for GO. I did see a thread about crypto/Fortuna but it seems that it has been discontinued for over 2 years. I would use crypt/rand but it's unclear how I can seed it in a way that is shareable (i.e., if I were to share the seed with someone else, they should be able to use it to generate the same sequence of random numbers). I guess my question really is: is there anyone out there who's implemented a CSPRNG? if not, I guess I'll just update the old fortuna code and see if I can get it to work.