]>
Commit | Line | Data |
---|---|---|
d8f41ccd A |
1 | #ifndef _SSLTEST_H_ |
2 | #define _SSLTEST_H_ 1 | |
3 | ||
4 | #include <Security/SecureTransport.h> | |
5 | ||
6 | #ifdef __cplusplus | |
7 | extern "C" { | |
8 | #endif | |
9 | ||
10 | const char *sslGetCipherSuiteString(SSLCipherSuite cs); | |
11 | const char *sslGetProtocolVersionString(SSLProtocol prot); | |
12 | const char *sslGetSSLErrString(OSStatus err); | |
13 | void printSslErrStr(const char *op, OSStatus err); | |
14 | ||
15 | #ifdef __cplusplus | |
16 | } | |
17 | #endif | |
18 | ||
19 | #endif /* _SSLTEST_H_ */ |