Searched refs:aes (Results 1 – 20 of 20) sorted by relevance
/openthread-3.4.0/third_party/mbedtls/repo/tests/ |
D | CMakeLists.txt | 80 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/ |
D | dh_client.c | 92 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()
|
D | dh_server.c | 92 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/ |
D | CMakeLists.txt | 1 add_subdirectory(aes)
|
D | .gitignore | 11 aes/crypt_and_hash
|
D | Makefile | 77 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 $@
|
D | README.md | 8 * [`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/ |
D | test_suite_pem.function | 5 #include "mbedtls/aes.h"
|
D | test_suite_aes.function | 2 #include "mbedtls/aes.h"
|
D | test_suite_cipher.function | 5 #include "mbedtls/aes.h"
|
/openthread-3.4.0/third_party/mbedtls/ |
D | Makefile.am | 51 repo/library/aes.c \ 181 repo/library/aes.c \
|
D | BUILD.gn | 49 "repo/include/mbedtls/aes.h", 128 "repo/library/aes.c",
|
/openthread-3.4.0/third_party/mbedtls/repo/programs/test/ |
D | benchmark.c | 494 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/ |
D | CMakeLists.txt | 72 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/ |
D | cipher_wrap.c | 212 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()
|
D | Makefile | 71 aes.o \
|
D | CMakeLists.txt | 14 aes.c
|
/openthread-3.4.0/third_party/mbedtls/repo/scripts/data_files/ |
D | query_config.fmt | 39 #include "mbedtls/aes.h"
|
/openthread-3.4.0/third_party/mbedtls/repo/docs/proposed/ |
D | psa-conditional-inclusion-c.md | 57 …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/ |
D | ChangeLog | 291 * Remove the AES sample application programs/aes/aescrypt2 which shows 2211 programs/aes/aescrypt2 and programs/aes/crypt_and_hash.
|