-
Notifications
You must be signed in to change notification settings - Fork 37
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
Tracking issue: test suite #6
Comments
Sorry, but unfortunately I do not think measuring entropy will be particularly useful. Shannon entropy does not guarantee the cryptographic properties of a random generator. I think an entropy test would give (if anything) only a false sense of security). I agree that this library should include test cases though. |
As an update to this, I suggest we (I?) could use CMocka for testing C objects. The hard part will be to get a cluster of build targets though. Perhaps use Buildbot? |
I can help to setup a travis build to covers linux, osx and nodejs targets. No idea how to automate windows or bsd. |
For Windows I would like to keep using Appveyor. For Linux we will want to build on linux<3.17 and linux>=3.17 (not sure how to do this on Travis). We already have osx (which is working fine). A Node.js target on Travis would be helpful. |
Update: Travis CI seems to have been discontinued. We have to find an alternative. |
Hi Dan! I am using github actions with succes and our own in-house jenkins for exotic targets that aren't covered. Also about tests, using randombytes in zenroom I setup another kind of test measuring the average hamming distance between a large number of iterations, perhaps interesting. I wish to contribute something in these directions, will try. |
Still to do:
randombytes
twice, check if output differs)cmockaa home-brewed mocking framework)Platforms:
windows
: use Appveyor (only builds)linux<3.17
(/dev/urandom
): use Travislinux>=3.17
(getrandom
): use Travis?osx
: use Travisbsd
: ??node
: Use Travis (d4a32f8)Original report:
Hi there again :^) thanks for sharing this pretty clean and handy implementation. Have you thought of adding a test suite that helps measuring the entropy on each system it is ran? This library may be of help https://github.com/dyne/libdisorder
The text was updated successfully, but these errors were encountered: