forked from tlspuffin/tlspuffin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix OpenSSL's deterministic RNG (tlspuffin#309)
* fix(openssl): correctly reseed OpenSSL's deterministic RNG * refactor(openssl): don't rely on RAND_seed to reset deterministic RNG * docs(openssl): remove outdated comments * feat(openssl): only reseed deterministic RNG when requested * fix(openssl): avoid race conditions when reseeding RNG * build: fix just fmt-clang recipe on macos
- Loading branch information
1 parent
c3a6d8a
commit d0ab7ab
Showing
5 changed files
with
102 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
extern crate cc; | ||
|
||
use std::io::ErrorKind; | ||
use std::{ | ||
env, | ||
fs::canonicalize, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters