- Added a generic entropy accumulator that provides support for adding custom entropy sources and added some generic and platform dependent entropy sources

This commit is contained in:
Paul Bakker 2011-12-03 21:45:14 +00:00
parent 1bc9efc00a
commit 6083fd252d
17 changed files with 771 additions and 20 deletions

View file

@ -9,7 +9,7 @@ my $error_file = shift or die "Missing destination file";
my $error_format_file = $data_dir.'/error.fmt';
my @low_level_modules = ( "AES", "ASN1", "CAMELLIA", "BIGNUM", "BASE64", "XTEA",
"PADLOCK", "DES", "NET", "CTR_DRBG" );
"PADLOCK", "DES", "NET", "CTR_DRBG", "ENTROPY" );
my @high_level_modules = ( "PEM", "X509", "DHM", "RSA", "MD", "CIPHER", "SSL" );
my $line_separator = $/;