diff options
author | Eduardo Chappa <chappa@washington.edu> | 2017-12-01 23:10:00 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2017-12-01 23:10:00 -0700 |
commit | f670e2888d23408d4386c6614a08b66ccef2992d (patch) | |
tree | 0b244498309d6ee8331a2069928088c46e573ff0 /include | |
parent | 0ef0caf0d77164aa615fffa8aff4e82a3a540f0f (diff) | |
download | alpine-f670e2888d23408d4386c6614a08b66ccef2992d.tar.xz |
* PC-Alpine builds with LibreSSL and supports S/MIME.
Diffstat (limited to 'include')
-rw-r--r-- | include/config.wnt.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/config.wnt.h b/include/config.wnt.h index d73b2b87..9c4a13fd 100644 --- a/include/config.wnt.h +++ b/include/config.wnt.h @@ -531,6 +531,28 @@ /* File name separator as string constant */ #define S_FILESEP "\\" +/* Enable S/MIME if LibreSSL */ +#ifdef ENABLE_WINDOWS_LIBRESSL +#define SMIME +/* Default configuration value */ +#define DF_PRIVATEKEY_DIR "alpine-smime\\private" + +/* Default configuration value */ +#define DF_PUBLICCERT_DIR "alpine-smime\\public" + +/* Name of default public container */ +#define DF_CACERT_DIR "alpine-smime\\ca" + +/* Name of default public container */ +#define DF_PUBLIC_CONTAINER "PublicContainer" + +/* Name of default private container */ +#define DF_PRIVATE_CONTAINER "PrivateContainer" + +/* Name of default certificate authority container */ +#define DF_CA_CONTAINER "CAContainer" +#endif /* ENABLE_WINDOWS_LIBRESSL */ + /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ /* #define TIME_WITH_SYS_TIME */ |