2021-08-07 20:22:35 +00:00
|
|
|
#ifndef COSMOPOLITAN_TOOL_BUILD_LIB_EZTLS_H_
|
|
|
|
#define COSMOPOLITAN_TOOL_BUILD_LIB_EZTLS_H_
|
|
|
|
#include "third_party/mbedtls/ctr_drbg.h"
|
|
|
|
#include "third_party/mbedtls/ssl.h"
|
2021-08-14 13:17:56 +00:00
|
|
|
#include "third_party/mbedtls/x509_crt.h"
|
2021-08-07 20:22:35 +00:00
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
|
|
|
struct EzTlsBio {
|
|
|
|
int fd, c;
|
|
|
|
unsigned a, b;
|
|
|
|
unsigned char t[4000];
|
|
|
|
unsigned char u[1430];
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct EzTlsBio ezbio;
|
|
|
|
extern mbedtls_ssl_config ezconf;
|
|
|
|
extern mbedtls_ssl_context ezssl;
|
|
|
|
extern mbedtls_ctr_drbg_context ezrng;
|
|
|
|
|
2021-08-14 13:17:56 +00:00
|
|
|
void EzFd(int);
|
2021-08-09 21:45:52 +00:00
|
|
|
void EzHandshake(void);
|
2022-03-16 20:33:13 +00:00
|
|
|
int EzHandshake2(void);
|
2021-08-14 13:17:56 +00:00
|
|
|
void EzSetup(char[32]);
|
|
|
|
void EzInitialize(void);
|
2021-08-07 20:22:35 +00:00
|
|
|
int EzTlsFlush(struct EzTlsBio *, const unsigned char *, size_t);
|
|
|
|
|
2021-08-14 13:17:56 +00:00
|
|
|
/*
|
|
|
|
* openssl s_client -connect 127.0.0.1:31337 \
|
|
|
|
* -psk $(hex <~/.runit.psk) \
|
|
|
|
* -psk_identity runit
|
|
|
|
*/
|
|
|
|
forceinline void SetupPresharedKeySsl(int endpoint, char psk[32]) {
|
|
|
|
EzInitialize();
|
|
|
|
mbedtls_ssl_config_defaults(&ezconf, endpoint, MBEDTLS_SSL_TRANSPORT_STREAM,
|
|
|
|
MBEDTLS_SSL_PRESET_SUITEC);
|
|
|
|
EzSetup(psk);
|
|
|
|
}
|
|
|
|
|
2021-08-07 20:22:35 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_LIB_EZTLS_H_ */
|