mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-08-08 17:42:09 +03:00
Avoid duplicate program names
Visual Studio and CMake didn't like having targets with the same name, albeit in different directories. Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
set(executables
|
||||
aead_demo
|
||||
cipher_aead_demo
|
||||
)
|
||||
|
||||
foreach(exe IN LISTS executables)
|
||||
|
@@ -66,7 +66,7 @@ int main( void )
|
||||
|
||||
/* The real program starts here. */
|
||||
|
||||
const char usage[] = "Usage: aead_demo [aes128-gcm|aes256-gcm|aes128-gcm_8|chachapoly]";
|
||||
const char usage[] = "Usage: cipher_aead_demo [aes128-gcm|aes256-gcm|aes128-gcm_8|chachapoly]";
|
||||
|
||||
/* Dummy data for encryption: IV/nonce, additional data, 2-part message */
|
||||
const unsigned char iv1[12] = { 0x00 };
|
Reference in New Issue
Block a user