Replace pointers to cipher_t/digest_t in connection_t with structs.
[tinc] / src / openssl / cipher.h
1 #ifndef TINC_OPENSSL_CIPHER_H
2 #define TINC_OPENSSL_CIPHER_H
3
4 #include <openssl/evp.h>
5
6 struct cipher {
7         EVP_CIPHER_CTX *ctx;
8         const EVP_CIPHER *cipher;
9 };
10
11 #endif