projects
/
tinc
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix invalid logger() calls in Solaris device code.
[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