Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TRN without RDSEED? #12

Open
ajcallegari opened this issue Aug 31, 2020 · 3 comments
Open

TRN without RDSEED? #12

ajcallegari opened this issue Aug 31, 2020 · 3 comments

Comments

@ajcallegari
Copy link

This is probably impossible, but is there a way to get true random number if your CPU had RDRAND but not RDSEED (i.e. random numbers that are naive to pseudorandom code)? Processors in this class are making hardware TRNs and using them to seed a pseudorandom number, so TRNs are in there somewhere.

Thanks,
John

@stillson
Copy link
Owner

stillson commented Sep 1, 2020

rdrand uses a constantly reseeded rng,which is seeded with truly random numbers. Its good enough to use for key material. I'll post links to some white papers soon.

@stillson
Copy link
Owner

stillson commented Sep 2, 2020

https://software.intel.com/content/www/us/en/develop/articles/intel-digital-random-number-generator-drng-software-implementation-guide.html

This gives a long but interesting overview of the command.

also, see https://github.com/dj-on-github

This is the github account of the guy who designed the rdrand for intel, and also wrote a bit with everything you might need to know about random numbers: "Random Number Generators, Principles and Practices" DeGruyter Press, ISBN 978-1501515132

@ajcallegari
Copy link
Author

ajcallegari commented Sep 2, 2020 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants