summaryrefslogtreecommitdiffstats
path: root/src/openvpn/crypto_openssl.c
diff options
context:
space:
mode:
authorSteffan Karger <steffan@karger.me>2014-05-26 00:08:32 +0200
committerGert Doering <gert@greenie.muc.de>2014-05-26 19:35:53 +0200
commitad4da1ac27cf9308852cac4b3a591a40fa579bc3 (patch)
tree088383192a79032599258451e1827d17f813bdee /src/openvpn/crypto_openssl.c
parenta91a2d6ad7b139ec78d61c8616b8447847e9ecc6 (diff)
downloadopenvpn-ad4da1ac27cf9308852cac4b3a591a40fa579bc3.tar.gz
openvpn-ad4da1ac27cf9308852cac4b3a591a40fa579bc3.tar.xz
openvpn-ad4da1ac27cf9308852cac4b3a591a40fa579bc3.zip
Remove function without effect (cipher_ok() always returned true).
Signed-off-by: Steffan Karger <steffan@karger.me> Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <1401055713-9891-2-git-send-email-steffan@karger.me> Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'src/openvpn/crypto_openssl.c')
-rw-r--r--src/openvpn/crypto_openssl.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/openvpn/crypto_openssl.c b/src/openvpn/crypto_openssl.c
index 1501bc8..6671a42 100644
--- a/src/openvpn/crypto_openssl.c
+++ b/src/openvpn/crypto_openssl.c
@@ -96,12 +96,6 @@ EVP_CipherUpdate_ov (EVP_CIPHER_CTX *ctx, uint8_t *out, int *outl, uint8_t *in,
return EVP_CipherUpdate (ctx, out, outl, in, inl);
}
-static inline bool
-cipher_ok (const char* name)
-{
- return true;
-}
-
#ifndef EVP_CIPHER_name
#define EVP_CIPHER_name(e) OBJ_nid2sn(EVP_CIPHER_nid(e))
#endif
@@ -312,7 +306,7 @@ show_available_ciphers ()
for (nid = 0; nid < 10000; ++nid) /* is there a better way to get the size of the nid list? */
{
const EVP_CIPHER *cipher = EVP_get_cipherbynid (nid);
- if (cipher && cipher_ok (OBJ_nid2sn (nid)))
+ if (cipher)
{
const unsigned int mode = EVP_CIPHER_mode (cipher);
if (mode == EVP_CIPH_CBC_MODE
@@ -491,7 +485,7 @@ cipher_kt_get (const char *ciphername)
cipher = EVP_get_cipherbyname (ciphername);
- if ((NULL == cipher) || !cipher_ok (OBJ_nid2sn (EVP_CIPHER_nid (cipher))))
+ if (NULL == cipher)
msg (M_SSLERR, "Cipher algorithm '%s' not found", ciphername);
if (EVP_CIPHER_key_length (cipher) > MAX_CIPHER_KEY_LENGTH)