mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-09-16 15:19:56 +00:00
The sample program aescrypt2 shows bad practice: hand-rolled CBC implementation, CBC+HMAC for AEAD, hand-rolled iterated SHA-2 for key stretching, no algorithm agility. The new sample program pbcrypt does the same thing, but better. So remove aescrypt2. Fix #1906 Signed-off-by: Gilles Peskine <[email protected]>
7 lines
260 B
CMake
7 lines
260 B
CMake
add_executable(crypt_and_hash crypt_and_hash.c)
|
|
target_link_libraries(crypt_and_hash mbedtls)
|
|
|
|
install(TARGETS crypt_and_hash
|
|
DESTINATION "bin"
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|