Home
last modified time | relevance | path

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

/net-tools-3.7.0/tinydtls-0.8.2/aes/
DMakefile.in68 test -d $(DISTDIR)/aes || mkdir $(DISTDIR)/aes
69 cp -p $(FILES) $(DISTDIR)/aes
72 test -d $(includedir)/aes || mkdir -p $(includedir)/aes
73 $(install) $(HEADERS) $(includedir)/aes
/net-tools-3.7.0/mbedtls-2.4.0/tests/
DCMakeLists.txt45 add_test_suite(aes aes.ecb)
46 add_test_suite(aes aes.cbc)
47 add_test_suite(aes aes.cfb)
48 add_test_suite(aes aes.rest)
55 add_test_suite(cipher cipher.aes)
DMakefile54 test_suite_cipher.aes$(EXEXT) \
116 test_suite_cipher.aes.c : suites/test_suite_cipher.function suites/test_suite_cipher.aes.data scrip…
118 perl scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.aes
244 test_suite_cipher.aes$(EXEXT): test_suite_cipher.aes.c $(DEP)
/net-tools-3.7.0/mbedtls-2.4.0/programs/pkey/
Ddh_client.c87 mbedtls_aes_context aes; in main() local
92 mbedtls_aes_init( &aes ); in main()
271 mbedtls_aes_setkey_dec( &aes, buf, 256 ); in main()
281 mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_DECRYPT, buf, buf ); in main()
289 mbedtls_aes_free( &aes ); in main()
Ddh_server.c87 mbedtls_aes_context aes; in main() local
93 mbedtls_aes_init( &aes ); in main()
276 mbedtls_aes_setkey_enc( &aes, buf, 256 ); in main()
278 mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_ENCRYPT, buf, buf ); in main()
293 mbedtls_aes_free( &aes ); in main()
/net-tools-3.7.0/mbedtls-2.4.0/programs/
D.gitignore5 aes/aescrypt2
6 aes/crypt_and_hash
DMakefile48 APPS = aes/aescrypt2$(EXEXT) aes/crypt_and_hash$(EXEXT) \
88 aes/aescrypt2$(EXEXT): aes/aescrypt2.c $(DEP)
90 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) aes/aescrypt2.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@
92 aes/crypt_and_hash$(EXEXT): aes/crypt_and_hash.c $(DEP)
94 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) aes/crypt_and_hash.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@
DCMakeLists.txt1 add_subdirectory(aes)
/net-tools-3.7.0/
D.gitignore88 tinydtls-0.8.2/aes/Makefile
90 tinydtls-0.8.2/aes/*.o
/net-tools-3.7.0/tinydtls-0.8.2/
DMakefile.in49 SUB_OBJECTS:=aes/rijndael.o @OPT_OBJS@
56 SUBDIRS:=tests doc platform-specific sha2 aes ecc
Dconfigure.in119 aes/Makefile
Dconfigure4200 …akefile examples/contiki/Makefile platform-specific/Makefile sha2/Makefile aes/Makefile ecc/Makefi…
4901 "aes/Makefile") CONFIG_FILES="$CONFIG_FILES aes/Makefile" ;;
/net-tools-3.7.0/mbedtls-2.4.0/programs/test/
Dbenchmark.c415 mbedtls_aes_context aes; in main() local
416 mbedtls_aes_init( &aes ); in main()
423 mbedtls_aes_setkey_enc( &aes, tmp, keysize ); in main()
426 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); in main()
428 mbedtls_aes_free( &aes ); in main()
/net-tools-3.7.0/mbedtls-2.4.0/yotta/data/example-benchmark/
Dmain.cpp492 mbedtls_aes_context aes; in benchmark() local
493 mbedtls_aes_init( &aes ); in benchmark()
500 mbedtls_aes_setkey_enc( &aes, tmp, keysize ); in benchmark()
503 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); in benchmark()
505 mbedtls_aes_free( &aes ); in benchmark()
/net-tools-3.7.0/mbedtls-2.4.0/library/
Dcipher_wrap.c165 mbedtls_aes_context *aes = mbedtls_calloc( 1, sizeof( mbedtls_aes_context ) ); in aes_ctx_alloc() local
167 if( aes == NULL ) in aes_ctx_alloc()
170 mbedtls_aes_init( aes ); in aes_ctx_alloc()
172 return( aes ); in aes_ctx_alloc()
DMakefile47 OBJS_CRYPTO= aes.o aesni.o arc4.o \
DCMakeLists.txt6 aes.c
/net-tools-3.7.0/mbedtls-2.4.0/tests/suites/
Dtest_suite_aes.function2 #include "mbedtls/aes.h"