Home
last modified time | relevance | path

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

/net-tools-latest/mbedtls-2.4.0/tests/suites/
Dtest_suite_ccm.data140 CCM encrypt and tag NIST VTT AES-128 #1 (P=24, N=13, A=32, T=4)
144 CCM encrypt and tag NIST VTT AES-128 #2 (P=24, N=13, A=32, T=6)
148 CCM encrypt and tag NIST VTT AES-128 #3 (P=24, N=13, A=32, T=8)
152 CCM encrypt and tag NIST VTT AES-128 #4 (P=24, N=13, A=32, T=10)
156 CCM encrypt and tag NIST VTT AES-128 #5 (P=24, N=13, A=32, T=12)
160 CCM encrypt and tag NIST VTT AES-128 #6 (P=24, N=13, A=32, T=14)
164 CCM encrypt and tag NIST VTT AES-128 #7 (P=24, N=13, A=32, T=16)
168 CCM encrypt and tag NIST VTT AES-192 #1 (P=24, N=13, A=32, T=4)
172 CCM encrypt and tag NIST VTT AES-192 #2 (P=24, N=13, A=32, T=6)
176 CCM encrypt and tag NIST VTT AES-192 #3 (P=24, N=13, A=32, T=8)
[all …]
Dtest_suite_cipher.ccm.data1 AES-128-CCM test vector NIST #1 (P=0, N=7, A=0, T=4)
5 AES-128-CCM test vector NIST #2 (P=0, N=7, A=0, T=4)
9 AES-128-CCM test vector NIST #3 (P=0, N=7, A=0, T=16)
13 AES-128-CCM test vector NIST #4 (P=0, N=7, A=0, T=16)
17 AES-128-CCM test vector NIST #5 (P=0, N=13, A=0, T=4)
21 AES-128-CCM test vector NIST #6 (P=0, N=13, A=0, T=4)
25 AES-128-CCM test vector NIST #7 (P=0, N=13, A=0, T=16)
29 AES-128-CCM test vector NIST #8 (P=0, N=13, A=0, T=16)
33 AES-128-CCM test vector NIST #9 (P=24, N=7, A=0, T=4)
37 AES-128-CCM test vector NIST #10 (P=24, N=7, A=0, T=4)
[all …]
/net-tools-latest/mbedtls-2.4.0/library/
Ddes.c266 T = ((X >> 4) ^ Y) & 0x0F0F0F0F; Y ^= T; X ^= (T << 4); \
267 T = ((X >> 16) ^ Y) & 0x0000FFFF; Y ^= T; X ^= (T << 16); \
268 T = ((Y >> 2) ^ X) & 0x33333333; X ^= T; Y ^= (T << 2); \
269 T = ((Y >> 8) ^ X) & 0x00FF00FF; X ^= T; Y ^= (T << 8); \
271 T = (X ^ Y) & 0xAAAAAAAA; Y ^= T; X ^= T; \
281 T = (X ^ Y) & 0xAAAAAAAA; X ^= T; Y ^= T; \
283 T = ((Y >> 8) ^ X) & 0x00FF00FF; X ^= T; Y ^= (T << 8); \
284 T = ((Y >> 2) ^ X) & 0x33333333; X ^= T; Y ^= (T << 2); \
285 T = ((X >> 16) ^ Y) & 0x0000FFFF; Y ^= T; X ^= (T << 16); \
286 T = ((X >> 4) ^ Y) & 0x0F0F0F0F; Y ^= T; X ^= (T << 4); \
[all …]
Decp.c337 if( grp->T != NULL ) in mbedtls_ecp_group_free()
340 mbedtls_ecp_point_free( &grp->T[i] ); in mbedtls_ecp_group_free()
341 mbedtls_free( grp->T ); in mbedtls_ecp_group_free()
790 mbedtls_ecp_point *T[], size_t t_len ) in ecp_normalize_jac_many() argument
797 return( ecp_normalize_jac( grp, *T ) ); in ecp_normalize_jac_many()
807 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &c[0], &T[0]->Z ) ); in ecp_normalize_jac_many()
810 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &c[i], &c[i-1], &T[i]->Z ) ); in ecp_normalize_jac_many()
831 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &u, &u, &T[i]->Z ) ); MOD_MUL( u ); in ecp_normalize_jac_many()
838 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &T[i]->X, &T[i]->X, &ZZi ) ); MOD_MUL( T[i]->X ); in ecp_normalize_jac_many()
839 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &T[i]->Y, &T[i]->Y, &ZZi ) ); MOD_MUL( T[i]->Y ); in ecp_normalize_jac_many()
[all …]
Drsa.c284 mbedtls_mpi T; in mbedtls_rsa_public() local
286 mbedtls_mpi_init( &T ); in mbedtls_rsa_public()
293 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &T, input, ctx->len ) ); in mbedtls_rsa_public()
295 if( mbedtls_mpi_cmp_mpi( &T, &ctx->N ) >= 0 ) in mbedtls_rsa_public()
302 MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &T, &T, &ctx->E, &ctx->N, &ctx->RN ) ); in mbedtls_rsa_public()
303 MBEDTLS_MPI_CHK( mbedtls_mpi_write_binary( &T, output, olen ) ); in mbedtls_rsa_public()
311 mbedtls_mpi_free( &T ); in mbedtls_rsa_public()
370 mbedtls_mpi T, T1, T2; in mbedtls_rsa_private() local
376 mbedtls_mpi_init( &T ); mbedtls_mpi_init( &T1 ); mbedtls_mpi_init( &T2 ); in mbedtls_rsa_private()
383 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( &T, input, ctx->len ) ); in mbedtls_rsa_private()
[all …]
Dbignum.c216 mbedtls_mpi T; in mbedtls_mpi_swap() local
218 memcpy( &T, X, sizeof( mbedtls_mpi ) ); in mbedtls_mpi_swap()
220 memcpy( Y, &T, sizeof( mbedtls_mpi ) ); in mbedtls_mpi_swap()
429 mbedtls_mpi T; in mbedtls_mpi_read_string() local
434 mbedtls_mpi_init( &T ); in mbedtls_mpi_read_string()
473 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_int( &T, X, radix ) ); in mbedtls_mpi_read_string()
477 MBEDTLS_MPI_CHK( mbedtls_mpi_add_int( X, &T, d ) ); in mbedtls_mpi_read_string()
481 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_int( X, &T, d ) ); in mbedtls_mpi_read_string()
488 mbedtls_mpi_free( &T ); in mbedtls_mpi_read_string()
529 mbedtls_mpi T; in mbedtls_mpi_write_string() local
[all …]
Dhavege.c61 #define SWAP(X,Y) { int *T = X; X = Y; Y = T; }
Dgcm.c138 uint32_t T = ( vl & 1 ) * 0xe1000000U; in gcm_gen_table() local
140 vh = ( vh >> 1 ) ^ ( (uint64_t) T << 32); in gcm_gen_table()
/net-tools-latest/mbedtls-2.4.0/scripts/
Drm-malloc-cast.cocci3 type T;
6 - (T *)
/net-tools-latest/mbedtls-2.4.0/tests/data_files/
Dtest-ca-v1.crt10 Ko/vJ2DDxp/LuuxgfbfmhDK+T/tYJiIDW9S01fv145YucMDkLr38Lu7iQVXANC59
/net-tools-latest/
Dclient_privkey.pem26 T/EgM7gE+il2hlLuloxtceC7fZZesLOzhf9g7gsgjJXCewivPQLP1FY=
DREADME.legacy180 application from qemu. This is T juntion tool which reads
/net-tools-latest/libcoap/examples/
Dcoap-client.txt.in20 [*-O* num,text] [*-T* token] [*-v* num] [*-a* addr] URI
105 *-T* token::
139 coap-client -m put coap://[fec0::3]/ck -T 3a -t binary -f to_upload
/net-tools-latest/mbedtls-2.4.0/programs/test/
Dbenchmark.c221 if( grp->T != NULL ) in ecp_clear_precomputed()
225 mbedtls_ecp_point_free( &grp->T[i] ); in ecp_clear_precomputed()
226 mbedtls_free( grp->T ); in ecp_clear_precomputed()
228 grp->T = NULL; in ecp_clear_precomputed()
/net-tools-latest/mbedtls-2.4.0/yotta/data/example-benchmark/
Dmain.cpp323 if( grp->T != NULL ) in ecp_clear_precomputed()
327 mbedtls_ecp_point_free( &grp->T[i] ); in ecp_clear_precomputed()
328 mbedtls_free( grp->T ); in ecp_clear_precomputed()
330 grp->T = NULL; in ecp_clear_precomputed()
/net-tools-latest/mbedtls-2.4.0/include/mbedtls/
Decp.h144 mbedtls_ecp_point *T; /*!< pre-computed points for ecp_mul_comb() */ member
/net-tools-latest/tinydtls-0.8.2/
Ddtls.c106 #define SKIP_VAR_FIELD(P,L,T) { \ argument
107 if (L < dtls_ ## T ## _to_int(P) + sizeof(T)) \
109 L -= dtls_ ## T ## _to_int(P) + sizeof(T); \
110 P += dtls_ ## T ## _to_int(P) + sizeof(T); \
/net-tools-latest/tinydtls-0.8.2/doc/
DDoxyfile.in1389 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
1535 # files in one run (i.e. multiple -o and -T options on the command line). This
/net-tools-latest/mbedtls-2.4.0/doxygen/
Dmbedtls.doxyfile1718 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
1895 # files in one run (i.e. multiple -o and -T options on the command line). This
/net-tools-latest/libcoap/doc/
DDoxyfile.in2087 # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
2333 # files in one run (i.e. multiple -o and -T options on the command line). This