add LTC_BASE64_STRICT to crypt_build_settings and crypt_constants

This commit is contained in:
Steffen Jaeckel 2016-01-23 17:04:53 +01:00 committed by Karel Miko
parent 1c0edfdead
commit 063bac396d
2 changed files with 7 additions and 0 deletions

View File

@ -337,6 +337,9 @@ const char *crypt_build_settings =
#if defined(LTC_BASE64_URL)
" BASE64-URL-SAFE "
#endif
#if defined(LTC_BASE64) || defined(LTC_BASE64_URL)
" "NAME_VALUE(LTC_BASE64_STRICT)" "
#endif
#if defined(LTC_CRC32)
" CRC32 "
#endif

View File

@ -89,6 +89,10 @@ static const crypt_constant _crypt_constants[] = {
{"LTC_CTR_MODE", 0},
#endif
#if defined(LTC_BASE64) || defined(LTC_BASE64_URL)
_C_STRINGIFY(LTC_BASE64_STRICT),
#endif
_C_STRINGIFY(MAXBLOCKSIZE),
_C_STRINGIFY(TAB_SIZE),
_C_STRINGIFY(ARGTYPE),