summaryrefslogtreecommitdiff
path: root/cipher.h
diff options
context:
space:
mode:
Diffstat (limited to 'cipher.h')
-rw-r--r--cipher.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/cipher.h b/cipher.h
index 46502348b..4e837a754 100644
--- a/cipher.h
+++ b/cipher.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: cipher.h,v 1.41 2013/11/07 11:58:27 dtucker Exp $ */ 1/* $OpenBSD: cipher.h,v 1.42 2013/11/21 00:45:44 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -38,6 +38,8 @@
38#define CIPHER_H 38#define CIPHER_H
39 39
40#include <openssl/evp.h> 40#include <openssl/evp.h>
41#include "cipher-chachapoly.h"
42
41/* 43/*
42 * Cipher types for SSH-1. New types can be added, but old types should not 44 * Cipher types for SSH-1. New types can be added, but old types should not
43 * be removed for compatibility. The maximum allowed value is 31. 45 * be removed for compatibility. The maximum allowed value is 31.
@@ -66,6 +68,7 @@ struct CipherContext {
66 int plaintext; 68 int plaintext;
67 int encrypt; 69 int encrypt;
68 EVP_CIPHER_CTX evp; 70 EVP_CIPHER_CTX evp;
71 struct chachapoly_ctx cp_ctx; /* XXX union with evp? */
69 const Cipher *cipher; 72 const Cipher *cipher;
70}; 73};
71 74
@@ -75,11 +78,13 @@ const Cipher *cipher_by_number(int);
75int cipher_number(const char *); 78int cipher_number(const char *);
76char *cipher_name(int); 79char *cipher_name(int);
77int ciphers_valid(const char *); 80int ciphers_valid(const char *);
78char *cipher_alg_list(char); 81char *cipher_alg_list(char, int);
79void cipher_init(CipherContext *, const Cipher *, const u_char *, u_int, 82void cipher_init(CipherContext *, const Cipher *, const u_char *, u_int,
80 const u_char *, u_int, int); 83 const u_char *, u_int, int);
81void cipher_crypt(CipherContext *, u_char *, const u_char *, 84void cipher_crypt(CipherContext *, u_int, u_char *, const u_char *,
82 u_int, u_int, u_int); 85 u_int, u_int, u_int);
86int cipher_get_length(CipherContext *, u_int *, u_int,
87 const u_char *, u_int);
83void cipher_cleanup(CipherContext *); 88void cipher_cleanup(CipherContext *);
84void cipher_set_key_string(CipherContext *, const Cipher *, const char *, int); 89void cipher_set_key_string(CipherContext *, const Cipher *, const char *, int);
85u_int cipher_blocksize(const Cipher *); 90u_int cipher_blocksize(const Cipher *);