summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
Diffstat (limited to 'kex.h')
-rw-r--r--kex.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/kex.h b/kex.h
index ecf43130f..8e29c90e9 100644
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.h,v 1.45 2007/06/05 06:52:37 djm Exp $ */ 1/* $OpenBSD: kex.h,v 1.46 2007/06/07 19:37:34 pvalchev Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -87,11 +87,13 @@ struct Enc {
87struct Mac { 87struct Mac {
88 char *name; 88 char *name;
89 int enabled; 89 int enabled;
90 const EVP_MD *md;
91 u_int mac_len; 90 u_int mac_len;
92 u_char *key; 91 u_char *key;
93 u_int key_len; 92 u_int key_len;
94 HMAC_CTX ctx; 93 int type;
94 const EVP_MD *evp_md;
95 HMAC_CTX evp_ctx;
96 struct umac_ctx *umac_ctx;
95}; 97};
96struct Comp { 98struct Comp {
97 int type; 99 int type;