6f3e6b7b6e381cd0311ba79284c11c807783b624
[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