summaryrefslogtreecommitdiff
path: root/cipher.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2017-05-04 01:33:21 +0000
committerDamien Miller <djm@mindrot.org>2017-05-08 09:18:27 +1000
commit0c378ff6d98d80bc465a4a6a787670fb9cc701ee (patch)
tree07490154bc530306b7519b319fca83abb5194ed5 /cipher.h
parent9a82e24b986e3e0dc70849dbb2c19aa6c707b37f (diff)
upstream commit
another tentacle: cipher_set_key_string() was only ever used for SSHv1 Upstream-ID: 7fd31eb6c48946f7e7cc12af0699fe8eb637e94a
Diffstat (limited to 'cipher.h')
-rw-r--r--cipher.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/cipher.h b/cipher.h
index 312bbc8a0..f9ac151f7 100644
--- a/cipher.h
+++ b/cipher.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: cipher.h,v 1.50 2017/04/30 23:15:04 djm Exp $ */ 1/* $OpenBSD: cipher.h,v 1.51 2017/05/04 01:33:21 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -59,8 +59,6 @@ int cipher_crypt(struct sshcipher_ctx *, u_int, u_char *, const u_char *,
59int cipher_get_length(struct sshcipher_ctx *, u_int *, u_int, 59int cipher_get_length(struct sshcipher_ctx *, u_int *, u_int,
60 const u_char *, u_int); 60 const u_char *, u_int);
61void cipher_free(struct sshcipher_ctx *); 61void cipher_free(struct sshcipher_ctx *);
62int cipher_set_key_string(struct sshcipher_ctx **,
63 const struct sshcipher *, const char *, int);
64u_int cipher_blocksize(const struct sshcipher *); 62u_int cipher_blocksize(const struct sshcipher *);
65u_int cipher_keylen(const struct sshcipher *); 63u_int cipher_keylen(const struct sshcipher *);
66u_int cipher_seclen(const struct sshcipher *); 64u_int cipher_seclen(const struct sshcipher *);