Home
last modified time | relevance | path

Searched refs:DTLS_EC_KEY_SIZE (Results 1 – 2 of 2) sorted by relevance

/net-tools-latest/tinydtls-0.8.2/
Ddtls.c80 #define DTLS_CE_LENGTH (3 + 3 + 27 + DTLS_EC_KEY_SIZE + DTLS_EC_KEY_SIZE)
81 #define DTLS_SKEXEC_LENGTH (1 + 2 + 1 + 1 + DTLS_EC_KEY_SIZE + DTLS_EC_KEY_SIZE + 1 + 1 + 2 + 70)
85 #define DTLS_CKXEC_LENGTH (1 + 1 + DTLS_EC_KEY_SIZE + DTLS_EC_KEY_SIZE)
86 #define DTLS_CV_LENGTH (1 + 1 + 2 + 1 + 1 + 1 + 1 + DTLS_EC_KEY_SIZE + 1 + 1 + DTLS_EC_KEY_SIZE)
1018 if (dtls_uint8_to_int(data) != 1 + 2 * DTLS_EC_KEY_SIZE) { in check_client_keyexchange()
1665 *result_r = data + i - DTLS_EC_KEY_SIZE; in dtls_check_ecdsa_signature_elem()
1682 *result_s = data + i - DTLS_EC_KEY_SIZE; in dtls_check_ecdsa_signature_elem()
1854 memcpy(p, key->pub_key_x, DTLS_EC_KEY_SIZE); in dtls_send_certificate_ecdsa()
1855 p += DTLS_EC_KEY_SIZE; in dtls_send_certificate_ecdsa()
1857 memcpy(p, key->pub_key_y, DTLS_EC_KEY_SIZE); in dtls_send_certificate_ecdsa()
[all …]
Dcrypto.h309 #define DTLS_EC_KEY_SIZE 32 macro