Home
last modified time | relevance | path

Searched defs:d (Results 1 – 25 of 25) sorted by relevance

/net-tools-3.7.0/tinydtls-0.8.2/sha2/
Dsha2.c203 #define MEMCPY_BCOPY(d,s,l) memcpy((d), (s), (l)) argument
207 #define MEMCPY_BCOPY(d,s,l) bcopy((s), (d), (l)) argument
385 #define ROUND256_0_TO_15(a,b,c,d,e,f,g,h) \ argument
396 #define ROUND256_0_TO_15(a,b,c,d,e,f,g,h) \ argument
405 #define ROUND256(a,b,c,d,e,f,g,h) \ argument
417 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; in SHA256_Transform() local
475 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; in SHA256_Transform() local
603 sha2_word32 *d = (sha2_word32*)digest; in SHA256_Final() local
666 sha2_byte digest[SHA256_DIGEST_LENGTH], *d = digest; in SHA256_End() local
713 #define ROUND512_0_TO_15(a,b,c,d,e,f,g,h) \ argument
[all …]
/net-tools-3.7.0/mbedtls-2.4.0/library/
Daes.c200 #define V(a,b,c,d) 0x##a##b##c##d argument
204 #define V(a,b,c,d) 0x##b##c##d##a argument
208 #define V(a,b,c,d) 0x##c##d##a##b argument
212 #define V(a,b,c,d) 0x##d##a##b##c argument
327 #define V(a,b,c,d) 0x##a##b##c##d argument
331 #define V(a,b,c,d) 0x##b##c##d##a argument
335 #define V(a,b,c,d) 0x##c##d##a##b argument
339 #define V(a,b,c,d) 0x##d##a##b##c argument
Dmd4.c142 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in mbedtls_md4_process() argument
165 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in mbedtls_md4_process() argument
188 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in mbedtls_md4_process() argument
Decdh.c44 int mbedtls_ecdh_gen_public( mbedtls_ecp_group *grp, mbedtls_mpi *d, mbedtls_ecp_point *Q, in mbedtls_ecdh_gen_public()
55 const mbedtls_ecp_point *Q, const mbedtls_mpi *d, in mbedtls_ecdh_compute_shared()
Decp.c1151 static void ecp_comb_fixed( unsigned char x[], size_t d, in ecp_comb_fixed()
1193 unsigned char w, size_t d ) in ecp_precompute_comb()
1275 const unsigned char x[], size_t d, in ecp_mul_comb_core()
1316 size_t d; in ecp_mul_comb() local
1510 const mbedtls_mpi *d ) in ecp_double_add_mxz()
1782 int mbedtls_ecp_check_privkey( const mbedtls_ecp_group *grp, const mbedtls_mpi *d ) in mbedtls_ecp_check_privkey()
1817 mbedtls_mpi *d, mbedtls_ecp_point *Q, in mbedtls_ecp_gen_keypair_base()
1898 mbedtls_mpi *d, mbedtls_ecp_point *Q, in mbedtls_ecp_gen_keypair()
Decp_curves.c45 #define BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
54 #define BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
60 #define BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument
70 #define BYTES_TO_T_UINT_4( a, b, c, d ) \ argument
Dbignum.c407 static int mpi_get_digit( mbedtls_mpi_uint *d, int radix, char c ) in mpi_get_digit()
428 mbedtls_mpi_uint d; in mbedtls_mpi_read_string() local
597 mbedtls_mpi_uint d; in mbedtls_mpi_read_file() local
938 static void mpi_sub_hlp( size_t n, mbedtls_mpi_uint *s, mbedtls_mpi_uint *d ) in mpi_sub_hlp()
1104 void mpi_mul_hlp( size_t i, mbedtls_mpi_uint *s, mbedtls_mpi_uint *d, mbedtls_mpi_uint b ) in mpi_mul_hlp()
1223 mbedtls_mpi_uint u0, mbedtls_mpi_uint d, mbedtls_mpi_uint *r ) in mbedtls_int_div_int()
1549 mbedtls_mpi_uint u0, u1, *d; in mpi_montmul() local
Decdsa.c73 const mbedtls_mpi *d, const unsigned char *buf, size_t blen, in mbedtls_ecdsa_sign()
162 const mbedtls_mpi *d, const unsigned char *buf, size_t blen, in mbedtls_ecdsa_sign_det()
Dripemd160.c150 #define P( a, b, c, d, e, r, s, f, k ) \ in mbedtls_ripemd160_process() argument
155 #define P2( a, b, c, d, e, r, s, rp, sp ) \ in mbedtls_ripemd160_process() argument
Dx509_create.c97 char *d = data; in mbedtls_x509_string_to_names() local
Dmd5.c135 #define P(a,b,c,d,k,s,t) \ in mbedtls_md5_process() argument
Dblowfish.c83 unsigned short a, b, c, d; in F() local
Dsha1.c143 #define P(a,b,c,d,e,x) \ in mbedtls_sha1_process() argument
Dsha256.c175 #define P(a,b,c,d,e,f,g,h,x,K) \ argument
Dsha512.c217 #define P(a,b,c,d,e,f,g,h,x,K) \ in mbedtls_sha512_process() argument
/net-tools-3.7.0/tinydtls-0.8.2/tests/
Dccm-test.c45 PROCESS_THREAD(ccm_test_process, ev, d) argument
/net-tools-3.7.0/mbedtls-2.4.0/include/mbedtls/
Decdh.h47 mbedtls_mpi d; /*!< our secret value (private key) */ member
Decp.h159 mbedtls_mpi d; /*!< our secret value */ member
/net-tools-3.7.0/tinydtls-0.8.2/ecc/
Dtestfield.c242 PROCESS_THREAD(ecc_filed_test, ev, d) in PROCESS_THREAD() argument
Dtestecc.c200 PROCESS_THREAD(ecc_filed_test, ev, d) in PROCESS_THREAD() argument
Decc.c44 uint64_t d = 0; //carry in add() local
58 uint64_t d = 0; in sub() local
534 int ecc_ecdsa_sign(const uint32_t *d, const uint32_t *e, const uint32_t *k, uint32_t *r, uint32_t *… in ecc_ecdsa_sign()
/net-tools-3.7.0/
Dcoap-client.c239 #define PUT_CON(desc, e, d, p, c) ENTRY2(desc, e, true, PUT, d, sizeof(d), \ argument
248 #define PUT_NON(desc, e, d, p, c) ENTRY2(desc, e, true, PUT, d, sizeof(d), \ argument
257 #define PUT_CON_TOKEN(desc, e, d, p, c) ENTRY4(desc, e, true, PUT, d, \ argument
263 #define GET_CON_PAYLOAD(desc, e, d, p, c) ENTRY2(desc, e, true, GET, \ argument
/net-tools-3.7.0/tinydtls-0.8.2/
Duthash.h432 #define get16bits(d) (*((const uint16_t *) (d))) argument
436 #define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8) \ argument
/net-tools-3.7.0/libcoap/include/coap/
Duthash.h475 #define get16bits(d) (*((const uint16_t *) (d))) argument
479 #define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8) \ argument
/net-tools-3.7.0/libcoap/examples/
Detsi_iot_01.c436 unsigned long d = 0; in hnd_get_separate() local