diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-10-11 20:45:22 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-10-11 20:45:22 +0000 |
commit | 7eec3d7707c9b6fcb68d849b07f292d86c12681b (patch) | |
tree | f9185264fc5625be34a786cb0d17e68a6287efc6 | |
parent | 41fa797508372b9ae735bffb7452ac956736cecc (diff) |
remove DES
-rw-r--r-- | usr.bin/ssh/cipher.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c index 8edb4fd42ad..8d6d1c35a7e 100644 --- a/usr.bin/ssh/cipher.c +++ b/usr.bin/ssh/cipher.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: cipher.c,v 1.32 2000/10/11 20:27:23 markus Exp $"); +RCSID("$OpenBSD: cipher.c,v 1.33 2000/10/11 20:45:21 markus Exp $"); #include "ssh.h" #include "xmalloc.h" @@ -301,10 +301,6 @@ Cipher ciphers[] = { SSH_CIPHER_NONE, 8, 0, none_setkey, none_setiv, none_crypt, none_crypt }, - { "des", - SSH_CIPHER_DES, 8, 8, - des_ssh1_setkey, des_ssh1_setiv, - des_ssh1_encrypt, des_ssh1_decrypt }, { "3des", SSH_CIPHER_3DES, 8, 16, des3_ssh1_setkey, des3_setiv, |