We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481cf0f commit b6f5e51Copy full SHA for b6f5e51
main.cpp
@@ -55,10 +55,12 @@
55
!defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
56
int main(void)
57
{
58
- mbedtls_printf("MBEDTLS_PSA_CRYPTO_C and/or MBEDTLS_AES_C and/or "
59
- "MBEDTLS_CIPHER_MODE_CBC and/or MBEDTLS_CIPHER_MODE_CTR "
60
- "and/or MBEDTLS_CIPHER_MODE_WITH_PADDING "
61
- "not defined.\r\n");
+ mbedtls_printf("Not all of the required options are defined:\r\n"
+ " - MBEDTLS_PSA_CRYPTO_C\r\n"
+ " - MBEDTLS_AES_C\r\n"
+ " - MBEDTLS_CIPHER_MODE_CBC\r\n"
62
+ " - MBEDTLS_CIPHER_MODE_CTR\r\n"
63
+ " - MBEDTLS_CIPHER_MODE_WITH_PADDING\r\n");
64
return 0;
65
}
66
#else
0 commit comments