X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fopenssl%2Fcipher.c;h=17ad408b317dd7465eb576c06c28040aa7708f33;hp=ae9640f0d6b5ed6f59ebcac50aa6f7412bab8bd5;hb=edc1efed3c0cf5aebb1c765066c0413757229a31;hpb=fcaf158494af7cb015d8658a3241c324518e8d7f diff --git a/src/openssl/cipher.c b/src/openssl/cipher.c index ae9640f0..17ad408b 100644 --- a/src/openssl/cipher.c +++ b/src/openssl/cipher.c @@ -1,6 +1,6 @@ /* cipher.c -- Symmetric block cipher handling - Copyright (C) 2007-2013 Guus Sliepen + Copyright (C) 2007-2016 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -62,10 +62,6 @@ cipher_t *cipher_open_by_nid(int nid) { return cipher_open(evp_cipher); } -cipher_t *cipher_open_blowfish_ofb(void) { - return cipher_open(EVP_bf_ofb()); -} - void cipher_close(cipher_t *cipher) { if(!cipher) return;