aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/c/ssleay.py
blob: a75d664c172256ebe5b748acd21db4d48b2d22b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
INCLUDES = [
    '#include "openssl/ssl.h"',
]

TYPES = [
    'static const int SSLEAY_VERSION;',
    'static const int SSLEAY_CFLAGS;',
    'static const int SSLEAY_BUILT_ON;',
    'static const int SSLEAY_PLATFORM;',
    'static const int SSLEAY_DIR;',
]

FUNCTIONS = [
    "long SSLeay(void);",
    "const char* SSLeay_version(int);",
]