summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/lib
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@cvs.openbsd.org>2012-12-12 16:46:11 +0000
committerChristian Weisgerber <naddy@cvs.openbsd.org>2012-12-12 16:46:11 +0000
commite45b06b839f3a4b340e3edde05e9124cbe249101 (patch)
treec295650bda6c62ef6cd6fb1401f6de085cf92013 /usr.bin/ssh/lib
parent524eb8dd0dfe508616acd02f8e9ac65dc9dbdb5e (diff)
use OpenSSL's EVP_aes_{128,192,256}_ctr() API and remove our hand-rolled
counter mode code; ok djm@
Diffstat (limited to 'usr.bin/ssh/lib')
-rw-r--r--usr.bin/ssh/lib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/lib/Makefile b/usr.bin/ssh/lib/Makefile
index 35c1edc6f48..b47d439adab 100644
--- a/usr.bin/ssh/lib/Makefile
+++ b/usr.bin/ssh/lib/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.65 2012/10/04 13:21:50 markus Exp $
+# $OpenBSD: Makefile,v 1.66 2012/12/12 16:46:10 naddy Exp $
.PATH: ${.CURDIR}/..
.include "${.CURDIR}/../Makefile.inc"
LIB= ssh
SRCS= authfd.c authfile.c bufaux.c bufec.c bufbn.c buffer.c canohost.c \
- channels.c cipher.c cipher-3des1.c cipher-bf1.c cipher-ctr.c \
+ channels.c cipher.c cipher-3des1.c cipher-bf1.c \
cleanup.c compat.c compress.c crc32.c deattack.c fatal.c \
hostfile.c log.c match.c nchan.c packet.c readpass.c \
rsa.c ttymodes.c xmalloc.c atomicio.c \