diff options
author | 2017-05-07 23:12:57 +0000 | |
---|---|---|
committer | 2017-05-07 23:12:57 +0000 | |
commit | d6dbd75998ea83ed9dfce109248b48ce61d15178 (patch) | |
tree | 05935ac37e086c3c8481f22c706c6080b31ea4ce /usr.bin/ssh/cipher.h | |
parent | Add a format for the name of the pane's mode, lets it be used as a (diff) | |
download | wireguard-openbsd-d6dbd75998ea83ed9dfce109248b48ce61d15178.tar.xz wireguard-openbsd-d6dbd75998ea83ed9dfce109248b48ce61d15178.zip |
As promised in last release announcement: remove support for
Blowfish, RC4 and CAST ciphers. ok markus@ deraadt@
Diffstat (limited to 'usr.bin/ssh/cipher.h')
-rw-r--r-- | usr.bin/ssh/cipher.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/ssh/cipher.h b/usr.bin/ssh/cipher.h index f9ac151f71a..dc7ecf1139d 100644 --- a/usr.bin/ssh/cipher.h +++ b/usr.bin/ssh/cipher.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cipher.h,v 1.51 2017/05/04 01:33:21 djm Exp $ */ +/* $OpenBSD: cipher.h,v 1.52 2017/05/07 23:12:57 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -71,7 +71,5 @@ u_int cipher_ctx_is_plaintext(struct sshcipher_ctx *); int cipher_get_keyiv(struct sshcipher_ctx *, u_char *, u_int); int cipher_set_keyiv(struct sshcipher_ctx *, const u_char *); int cipher_get_keyiv_len(const struct sshcipher_ctx *); -int cipher_get_keycontext(const struct sshcipher_ctx *, u_char *); -void cipher_set_keycontext(struct sshcipher_ctx *, const u_char *); #endif /* CIPHER_H */ |