mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
398f0c16fb
This change makes SSL virtual hosting possible. You can now load
multiple certificates for multiple domains and redbean will just
figure out which one to use, even if you only have 1 ip address.
You can also use a jumbo certificate that lists all your domains
in the the subject alternative names.
This change also makes performance improvements to MbedTLS. Here
are some benchmarks vs. cc1920749e
BEFORE AFTER (microsecs)
suite_ssl.com 2512881 191738 13.11x faster
suite_pkparse.com 36291 3295 11.01x faster
suite_x509parse.com 854669 120293 7.10x faster
suite_pkwrite.com 6549 1265 5.18x faster
suite_ecdsa.com 53347 18778 2.84x faster
suite_pk.com 49051 18717 2.62x faster
suite_ecdh.com 19535 9502 2.06x faster
suite_shax.com 15848 7965 1.99x faster
suite_rsa.com 353257 184828 1.91x faster
suite_x509write.com 162646 85733 1.90x faster
suite_ecp.com 20503 11050 1.86x faster
suite_hmac_drbg.no_reseed.com 19528 11417 1.71x faster
suite_hmac_drbg.nopr.com 12460 8010 1.56x faster
suite_mpi.com 687124 442661 1.55x faster
suite_hmac_drbg.pr.com 11890 7752 1.53x faster
There aren't any special tricks to the performance imporvements.
It's mostly due to code cleanup, assembly and intel instructions
like mulx, adox, and adcx.
69 lines
2.2 KiB
C
69 lines
2.2 KiB
C
#ifndef COSMOPOLITAN_THIRD_PARTY_MBEDTLS_PLATFORM_H_
|
|
#define COSMOPOLITAN_THIRD_PARTY_MBEDTLS_PLATFORM_H_
|
|
#include "libc/assert.h"
|
|
#include "libc/bits/likely.h"
|
|
#include "libc/calls/weirdtypes.h"
|
|
#include "libc/fmt/fmt.h"
|
|
#include "libc/mem/mem.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/stdio/stdio.h"
|
|
#include "libc/time/time.h"
|
|
#include "third_party/mbedtls/config.h"
|
|
COSMOPOLITAN_C_START_
|
|
|
|
#define MBEDTLS_EXIT_SUCCESS 0
|
|
#define MBEDTLS_EXIT_FAILURE 1
|
|
|
|
#define mbedtls_free free
|
|
#define mbedtls_calloc calloc
|
|
#define mbedtls_snprintf snprintf
|
|
#define mbedtls_vsnprintf vsnprintf
|
|
#define mbedtls_exit exit
|
|
#define mbedtls_time_t time_t
|
|
#define mbedtls_time time
|
|
#define mbedtls_platform_gmtime_r gmtime_r
|
|
|
|
#define mbedtls_fprintf(...) ((void)0)
|
|
#define mbedtls_printf(...) ((void)0)
|
|
|
|
#ifdef MBEDTLS_CHECK_PARAMS
|
|
#define MBEDTLS_PARAM_FAILED(cond) \
|
|
mbedtls_param_failed(#cond, __FILE__, __LINE__)
|
|
#else
|
|
#define MBEDTLS_PARAM_FAILED(cond) unreachable
|
|
#endif
|
|
|
|
#define MBEDTLS_INTERNAL_VALIDATE_RET(cond, ret) \
|
|
do { \
|
|
if (UNLIKELY(!(cond))) { \
|
|
MBEDTLS_PARAM_FAILED(cond); \
|
|
return ret; \
|
|
} \
|
|
} while (0)
|
|
|
|
#define MBEDTLS_INTERNAL_VALIDATE(cond) \
|
|
do { \
|
|
if (UNLIKELY(!(cond))) { \
|
|
MBEDTLS_PARAM_FAILED(cond); \
|
|
return; \
|
|
} \
|
|
} while (0)
|
|
|
|
#if IsModeDbg()
|
|
#define MBEDTLS_ASSERT(EXPR) \
|
|
((void)((EXPR) || (__assert_fail(#EXPR, __FILE__, __LINE__), 0)))
|
|
#else
|
|
#define MBEDTLS_ASSERT(EXPR) (void)0
|
|
#endif
|
|
|
|
typedef struct mbedtls_platform_context {
|
|
char dummy;
|
|
} mbedtls_platform_context;
|
|
|
|
void mbedtls_platform_zeroize(void *, size_t);
|
|
int mbedtls_platform_setup(mbedtls_platform_context *);
|
|
void mbedtls_platform_teardown(mbedtls_platform_context *);
|
|
void mbedtls_param_failed(const char *, const char *, int) relegated;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_THIRD_PARTY_MBEDTLS_PLATFORM_H_ */
|