mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
77 lines
1.8 KiB
C
77 lines
1.8 KiB
C
#ifndef _WIN_USER_SETTINGS_H_
|
|
#define _WIN_USER_SETTINGS_H_
|
|
|
|
/* Verify this is Windows */
|
|
#ifndef _WIN32
|
|
#error This user_settings.h header is only designed for Windows
|
|
#endif
|
|
|
|
/* Configurations */
|
|
#define WOLFSSL_DES_ECB
|
|
#define HAVE_FFDHE_2048
|
|
#define TFM_TIMING_RESISTANT
|
|
#define NO_DSA
|
|
#define TFM_ECC256
|
|
#define NO_RC4
|
|
#define NO_HC128
|
|
#define NO_RABBIT
|
|
#define WOLFSSL_SHA224
|
|
#define WOLFSSL_SHA384
|
|
#define WOLFSSL_SHA3
|
|
#define WOLFSSL_SHA512
|
|
#define WOLFSSL_SHAKE256
|
|
#define HAVE_POLY1305
|
|
#define HAVE_ONE_TIME_AUTH
|
|
#define HAVE_CHACHA
|
|
#define HAVE_HASHDRBG
|
|
#define HAVE_SNI
|
|
#define HAVE_ENCRYPT_THEN_MAC
|
|
#define NO_MD4
|
|
#define WC_NO_ASYNC_THREADING
|
|
#define WC_NO_HARDEN
|
|
#define HAVE_WRITE_DUP
|
|
#define WC_RSA_BLINDING
|
|
#define NO_MULTIBYTE_PRINT
|
|
#define OPENSSL_EXTRA
|
|
#define WOLFSSL_RIPEMD
|
|
#define NO_PSK
|
|
#define HAVE_EXTENDED_MASTER
|
|
#define WOLFSSL_SNIFFER
|
|
#define HAVE_AESGCM
|
|
#define HAVE_SUPPORTED_CURVES
|
|
#define HAVE_TLS_EXTENSIONS
|
|
#define HAVE_ECC
|
|
#define ECC_SHAMIR
|
|
#define ECC_TIMING_RESISTANT
|
|
|
|
/* UTF-8 aware filesystem functions for Windows */
|
|
#define WOLFSSL_USER_FILESYSTEM
|
|
|
|
#include <stdio.h>
|
|
#define XFILE FILE*
|
|
|
|
extern FILE* wolfSSL_fopen_utf8(const char* name, const char* mode);
|
|
#define XFOPEN wolfSSL_fopen_utf8
|
|
|
|
#define XFDOPEN fdopen
|
|
#define XFSEEK fseek
|
|
#define XFTELL ftell
|
|
#define XREWIND rewind
|
|
#define XFREAD fread
|
|
#define XFWRITE fwrite
|
|
#define XFCLOSE fclose
|
|
#define XSEEK_END SEEK_END
|
|
#define XBADFILE NULL
|
|
#define XFGETS fgets
|
|
#define XFPRINTF fprintf
|
|
#define XFFLUSH fflush
|
|
|
|
#include <sys/stat.h>
|
|
extern int wolfSSL_stat_utf8(const char* path, struct _stat* buffer);
|
|
#define XSTAT wolfSSL_stat_utf8
|
|
#define XSTAT_TYPE struct _stat
|
|
#define XS_ISREG(s) (s & _S_IFREG)
|
|
#define SEPARATOR_CHAR ';'
|
|
|
|
#endif /* _WIN_USER_SETTINGS_H_ */
|