mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2026-04-04 14:08:39 +00: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:
parent
6fdc9e8df1
commit
29088a4146
8 changed files with 17 additions and 17 deletions
|
|
@ -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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue