mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
0d3c1c8b1a
This change fixes stderr to be unbuffered. Added hardware AES on ARM64 to help safeguard against timing attacks. The curl.com command will be somewhat more pleasant to use.
16 lines
635 B
C
16 lines
635 B
C
#ifndef COSMOPOLITAN_THIRD_PARTY_MBEDTLS_IANA_H_
|
|
#define COSMOPOLITAN_THIRD_PARTY_MBEDTLS_IANA_H_
|
|
#include "third_party/mbedtls/ssl.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
bool IsCipherSuiteGood(uint16_t);
|
|
const char *GetCipherSuiteName(uint16_t);
|
|
const char *DescribeMbedtlsErrorCode(int);
|
|
const char *GetAlertDescription(unsigned char);
|
|
dontdiscard char *FormatSslClientCiphers(const mbedtls_ssl_context *);
|
|
const char *DescribeSslClientHandshakeError(const mbedtls_ssl_context *, int);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_THIRD_PARTY_MBEDTLS_IANA_H_ */
|