2015-04-02 18:59:30 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-04-09 10:15:10 +02:00
|
|
|
set -eu
|
|
|
|
|
|
|
|
if [ -d include/mbedtls ]; then :; else
|
|
|
|
echo "$0: must be run from root" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-04-02 18:59:30 +02:00
|
|
|
|
2019-01-08 17:15:50 +01:00
|
|
|
HEADERS=$( ls include/mbedtls/*.h include/psa/*.h | egrep -v 'compat-1\.3\.h' )
|
2018-12-14 16:46:34 +01:00
|
|
|
HEADERS="$HEADERS 3rdparty/everest/include/everest/everest.h 3rdparty/everest/include/everest/x25519.h"
|
2015-04-02 18:59:30 +02:00
|
|
|
|
2019-02-26 12:53:36 +01:00
|
|
|
# White-list macros we want to be able to refer to that don't exist in the
|
|
|
|
# crypto library, useful when referring to macros in Mbed TLS from comments.
|
|
|
|
WHITELIST='MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS'
|
|
|
|
|
|
|
|
# Generate a list of macros and combine it with the white-listed macros in
|
|
|
|
# sorted order.
|
|
|
|
{ sed -n -e 's/.*#define \([a-zA-Z0-9_]*\).*/\1/p' $HEADERS |
|
|
|
|
egrep -v '^(asm|inline|EMIT|_CRT_SECURE_NO_DEPRECATE)$|^MULADDC_';
|
|
|
|
printf '%s\n' $WHITELIST;
|
|
|
|
} | sort -u > macros
|
2015-04-02 18:59:30 +02:00
|
|
|
|
|
|
|
wc -l macros
|