Home
last modified time | relevance | path

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

/openthread-3.4.0/third_party/mbedtls/repo/tests/
DCMakeLists.txt80 add_test_suite(aes aes.cbc)
81 add_test_suite(aes aes.cfb)
82 add_test_suite(aes aes.ecb)
83 add_test_suite(aes aes.ofb)
84 add_test_suite(aes aes.rest)
85 add_test_suite(aes aes.xts)
96 add_test_suite(cipher cipher.aes)
/openthread-3.4.0/third_party/mbedtls/repo/programs/pkey/
Ddh_client.c92 mbedtls_aes_context aes; in main() local
97 mbedtls_aes_init( &aes ); in main()
277 ret = mbedtls_aes_setkey_dec( &aes, buf, 256 ); in main()
289 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_DECRYPT, buf, buf ); in main()
301 mbedtls_aes_free( &aes ); in main()
Ddh_server.c92 mbedtls_aes_context aes; in main() local
100 mbedtls_aes_init( &aes ); in main()
298 ret = mbedtls_aes_setkey_enc( &aes, buf, 256 ); in main()
302 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_ENCRYPT, buf, buf ); in main()
324 mbedtls_aes_free( &aes ); in main()
/openthread-3.4.0/third_party/mbedtls/repo/programs/
DCMakeLists.txt1 add_subdirectory(aes)
D.gitignore11 aes/crypt_and_hash
DMakefile77 aes/crypt_and_hash$(EXEXT) \
164 aes/crypt_and_hash$(EXEXT): aes/crypt_and_hash.c $(DEP)
166 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) aes/crypt_and_hash.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@
DREADME.md8 * [`aes/crypt_and_hash.c`](aes/crypt_and_hash.c): file encryption and authentication, demonstrating…
/openthread-3.4.0/third_party/mbedtls/repo/tests/suites/
Dtest_suite_pem.function5 #include "mbedtls/aes.h"
Dtest_suite_aes.function2 #include "mbedtls/aes.h"
Dtest_suite_cipher.function5 #include "mbedtls/aes.h"
/openthread-3.4.0/third_party/mbedtls/
DMakefile.am51 repo/library/aes.c \
181 repo/library/aes.c \
DBUILD.gn49 "repo/include/mbedtls/aes.h",
128 "repo/library/aes.c",
/openthread-3.4.0/third_party/mbedtls/repo/programs/test/
Dbenchmark.c494 mbedtls_aes_context aes; in main() local
495 mbedtls_aes_init( &aes ); in main()
502 CHECK_AND_CONTINUE( mbedtls_aes_setkey_enc( &aes, tmp, keysize ) ); in main()
505 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); in main()
507 mbedtls_aes_free( &aes ); in main()
/openthread-3.4.0/tests/unit/
DCMakeLists.txt72 add_executable(ot-test-aes
76 target_include_directories(ot-test-aes
81 target_compile_options(ot-test-aes
86 target_link_libraries(ot-test-aes
91 add_test(NAME ot-test-aes COMMAND ot-test-aes)
/openthread-3.4.0/third_party/mbedtls/repo/library/
Dcipher_wrap.c212 mbedtls_aes_context *aes = mbedtls_calloc( 1, sizeof( mbedtls_aes_context ) ); in aes_ctx_alloc() local
214 if( aes == NULL ) in aes_ctx_alloc()
217 mbedtls_aes_init( aes ); in aes_ctx_alloc()
219 return( aes ); in aes_ctx_alloc()
DMakefile71 aes.o \
DCMakeLists.txt14 aes.c
/openthread-3.4.0/third_party/mbedtls/repo/scripts/data_files/
Dquery_config.fmt39 #include "mbedtls/aes.h"
/openthread-3.4.0/third_party/mbedtls/repo/docs/proposed/
Dpsa-conditional-inclusion-c.md57 …ration file and the Mbed TLS configuration file. For example, the code in `aes.c` is enabled if ei…
/openthread-3.4.0/third_party/mbedtls/repo/
DChangeLog291 * Remove the AES sample application programs/aes/aescrypt2 which shows
2211 programs/aes/aescrypt2 and programs/aes/crypt_and_hash.