tls implemented

This commit is contained in:
miodragpop
2020-09-29 13:08:45 +02:00
parent 3e81631dc9
commit 62f67821ec
11 changed files with 1479 additions and 72 deletions

8
src/hush/tlsenums.h Normal file
View File

@@ -0,0 +1,8 @@
namespace hush
{
typedef enum { SSL_ACCEPT,
SSL_CONNECT,
SSL_SHUTDOWN } SSLConnectionRoutine;
typedef enum { CLIENT_CONTEXT,
SERVER_CONTEXT } TLSContextType;
}