mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 20:15:38 +01:00
7fcc7bc576
Add a macro whitelist which enables us to refer to Mbed TLS macros that are no longer present in Mbed Crypto.
24 lines
682 B
Bash
Executable File
24 lines
682 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ -d include/mbedtls ]; then :; else
|
|
echo "$0: must be run from root" >&2
|
|
exit 1
|
|
fi
|
|
|
|
HEADERS=$( ls include/mbedtls/*.h include/psa/*.h | egrep -v 'compat-1\.3\.h' )
|
|
|
|
# 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
|
|
|
|
wc -l macros
|