Home
last modified time | relevance | path

Searched refs:aes (Results 1 – 17 of 17) sorted by relevance

/mbedtls-development/tests/
A DCMakeLists.txt157 add_test_suite(aes aes.cbc)
158 add_test_suite(aes aes.cfb)
159 add_test_suite(aes aes.ecb)
160 add_test_suite(aes aes.ofb)
161 add_test_suite(aes aes.rest)
162 add_test_suite(aes aes.xts)
171 add_test_suite(cipher cipher.aes)
/mbedtls-development/programs/pkey/
A Ddh_client.c88 mbedtls_aes_context aes; in main() local
92 mbedtls_aes_init( &aes ); in main()
273 ret = mbedtls_aes_setkey_dec( &aes, buf, 256 ); in main()
285 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_DECRYPT, buf, buf ); in main()
297 mbedtls_aes_free( &aes ); in main()
A Ddh_server.c88 mbedtls_aes_context aes; in main() local
95 mbedtls_aes_init( &aes ); in main()
293 ret = mbedtls_aes_setkey_enc( &aes, buf, 256 ); in main()
297 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_ENCRYPT, buf, buf ); in main()
319 mbedtls_aes_free( &aes ); in main()
/mbedtls-development/programs/
A DCMakeLists.txt1 add_subdirectory(aes)
A D.gitignore15 aes/crypt_and_hash
A DMakefile64 aes/crypt_and_hash \
172 aes/crypt_and_hash$(EXEXT): aes/crypt_and_hash.c $(DEP)
174 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) aes/crypt_and_hash.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@
A DREADME.md8 * [`aes/crypt_and_hash.c`](aes/crypt_and_hash.c): file encryption and authentication, demonstrating…
/mbedtls-development/tests/suites/
A Dtest_suite_pem.function5 #include "mbedtls/aes.h"
A Dtest_suite_aes.function2 #include "mbedtls/aes.h"
A Dtest_suite_cipher.function5 #include "mbedtls/aes.h"
/mbedtls-development/programs/test/
A Dbenchmark.c719 mbedtls_aes_context aes; in main() local
720 mbedtls_aes_init( &aes ); in main()
727 CHECK_AND_CONTINUE( mbedtls_aes_setkey_enc( &aes, tmp, keysize ) ); in main()
730 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); in main()
732 mbedtls_aes_free( &aes ); in main()
/mbedtls-development/library/
A Dcipher_wrap.c204 mbedtls_aes_context *aes = mbedtls_calloc( 1, sizeof( mbedtls_aes_context ) ); in aes_ctx_alloc() local
206 if( aes == NULL ) in aes_ctx_alloc()
209 mbedtls_aes_init( aes ); in aes_ctx_alloc()
211 return( aes ); in aes_ctx_alloc()
A DMakefile73 aes.o \
A DCMakeLists.txt14 aes.c
/mbedtls-development/scripts/data_files/
A Dquery_config.fmt35 #include "mbedtls/aes.h"
/mbedtls-development/docs/proposed/
A Dpsa-conditional-inclusion-c.md57 …ration file and the Mbed TLS configuration file. For example, the code in `aes.c` is enabled if ei…
/mbedtls-development/
A DChangeLog426 * Remove the AES sample application programs/aes/aescrypt2 which shows
2355 programs/aes/aescrypt2 and programs/aes/crypt_and_hash.

Completed in 23 milliseconds