From 38fb8caec8bed251cd5b7f585dace5d7db89e7b7 Mon Sep 17 00:00:00 2001 From: toddouska Date: Mon, 27 Jul 2015 14:56:26 -0700 Subject: [PATCH] restore FIPS des3 build w/o opensslextra --- wolfcrypt/src/des3.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/wolfcrypt/src/des3.c b/wolfcrypt/src/des3.c index ee068a0bc..cab21a9b3 100644 --- a/wolfcrypt/src/des3.c +++ b/wolfcrypt/src/des3.c @@ -91,12 +91,6 @@ void wc_Des_SetIV(Des* des, const byte* iv) } -int wc_Des_CbcEncryptWithKey(byte* out, const byte* in, word32 sz, - const byte* key, const byte* iv) -{ - return Des_CbcEncryptWithKey(out, in, sz, key, iv); -} - int wc_Des_CbcDecryptWithKey(byte* out, const byte* in, word32 sz, const byte* key, const byte* iv) { @@ -110,12 +104,6 @@ int wc_Des3_SetIV(Des3* des, const byte* iv) } -int wc_Des3_CbcEncryptWithKey(byte* out, const byte* in, word32 sz, - const byte* key, const byte* iv) -{ - return Des3_CbcEncryptWithKey(out, in, sz, key, iv); -} - int wc_Des3_CbcDecryptWithKey(byte* out, const byte* in, word32 sz, const byte* key, const byte* iv) {