X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fnode.h;h=83af5e3ccc7523de03b8c569f500566500f6aa34;hb=40731d030fef793c6b6405efd9b3e64c26c00045;hp=4186d06193ecd31d1695142ed1813f720a50a96d;hpb=269892f70bf357de6ad66ca89daa34b225ee9e37;p=meshlink diff --git a/src/node.h b/src/node.h index 4186d061..83af5e3c 100644 --- a/src/node.h +++ b/src/node.h @@ -24,9 +24,7 @@ #define __TINC_NODE_H__ #include "splay_tree.h" -#include "cipher.h" #include "connection.h" -#include "digest.h" #include "list.h" #include "subnet.h" @@ -52,9 +50,13 @@ typedef struct node_t { node_status_t status; - cipher_t cipher; /* Cipher for UDP packets */ - digest_t digest; /* Digest for UDP packets */ - int maclength; /* Portion of digest to use */ + const EVP_CIPHER *cipher; /* Cipher type for UDP packets */ + char *key; /* Cipher key and iv */ + int keylength; /* Cipher key and iv length */ + EVP_CIPHER_CTX packet_ctx; /* Cipher context */ + + const EVP_MD *digest; /* Digest type for MAC */ + int maclength; /* Length of MAC */ int compression; /* Compressionlevel, 0 = no compression */