diff options
author | 2014-04-15 20:06:09 +0000 | |
---|---|---|
committer | 2014-04-15 20:06:09 +0000 | |
commit | 68c0184592b044f3976f88a8512516f3a3780200 (patch) | |
tree | 91f93963a9f8d67c5ab9bcc88fe6c0dfdbb5f400 /lib/libssl/src/crypto/seed/seed.c | |
parent | Q: How would you like your lies, sir? (diff) | |
download | wireguard-openbsd-68c0184592b044f3976f88a8512516f3a3780200.tar.xz wireguard-openbsd-68c0184592b044f3976f88a8512516f3a3780200.zip |
remove FIPS mode support. people who require FIPS can buy something that
meets their needs, but dumping it in here only penalizes the rest of us.
ok beck deraadt
Diffstat (limited to 'lib/libssl/src/crypto/seed/seed.c')
-rw-r--r-- | lib/libssl/src/crypto/seed/seed.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libssl/src/crypto/seed/seed.c b/lib/libssl/src/crypto/seed/seed.c index 3e675a8d755..934664ddb69 100644 --- a/lib/libssl/src/crypto/seed/seed.c +++ b/lib/libssl/src/crypto/seed/seed.c @@ -198,13 +198,6 @@ static const seed_word KC[] = { KC8, KC9, KC10, KC11, KC12, KC13, KC14, KC15 }; #endif void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], SEED_KEY_SCHEDULE *ks) -#ifdef OPENSSL_FIPS - { - fips_cipher_abort(SEED); - private_SEED_set_key(rawkey, ks); - } -void private_SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], SEED_KEY_SCHEDULE *ks) -#endif { seed_word x1, x2, x3, x4; seed_word t0, t1; |