diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2014-04-15 20:06:11 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2014-04-15 20:06:11 +0000 |
commit | 1acffe56a9410893729c63d8ba655c60f52dd70d (patch) | |
tree | 2f0b14116a8fbd6f5539e4e3ce50ce644948fc6d /lib/libcrypto/ripemd | |
parent | 5bdd68a22c7a5658ad11b9a9f5242513f1abe74c (diff) |
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/libcrypto/ripemd')
-rw-r--r-- | lib/libcrypto/ripemd/ripemd.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libcrypto/ripemd/ripemd.h b/lib/libcrypto/ripemd/ripemd.h index 189bd8c90e9..5942eb61808 100644 --- a/lib/libcrypto/ripemd/ripemd.h +++ b/lib/libcrypto/ripemd/ripemd.h @@ -91,9 +91,6 @@ typedef struct RIPEMD160state_st unsigned int num; } RIPEMD160_CTX; -#ifdef OPENSSL_FIPS -int private_RIPEMD160_Init(RIPEMD160_CTX *c); -#endif int RIPEMD160_Init(RIPEMD160_CTX *c); int RIPEMD160_Update(RIPEMD160_CTX *c, const void *data, size_t len); int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); |