Home
last modified time | relevance | path

Searched refs:random_len (Results 1 – 6 of 6) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_auth.c1400 uint16_t random_len = 0; local
1432 random_len = plen - sizeof(*p_random);
1485 keylen = sizeof(*p_random) + random_len + sizeof(*hmacs) + hmacs_len;
1493 keylen = sizeof(*p_random) + random_len;
1513 stcb->asoc.authinfo.random_len = random_len;
1958 uint16_t random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT; local
1987 keylen = (3 * sizeof(struct sctp_paramhdr)) + random_len + chunks_len +
1996 plen = sizeof(*ph) + random_len;
1998 SCTP_READ_RANDOM(new_key->key + sizeof(*ph), random_len);
2028 stcb->asoc.authinfo.random_len = random_len;
Dsctp_auth.h93 uint32_t random_len; /* local random number length for param */ member
Dsctp_pcb.c7015 uint16_t random_len = 0; local
7472 random_len = plen - sizeof(*p_random);
7474 if (random_len != SCTP_AUTH_RANDOM_SIZE_REQUIRED) {
7637 keylen = sizeof(*p_random) + random_len + sizeof(*hmacs) + hmacs_len;
7645 keylen = sizeof(*p_random) + random_len;
Dsctp_output.c5235 parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len;
/third_party/libwebsockets/lib/jose/jws/
Djws.c235 int idx, char *temp, int *temp_len, size_t random_len, in lws_jws_randomize_element() argument
239 actual_alloc = random_len; in lws_jws_randomize_element()
244 map->len[idx] = (uint32_t)random_len; in lws_jws_randomize_element()
247 if (lws_get_random(context, temp, random_len) != random_len) { in lws_jws_randomize_element()
/third_party/libwebsockets/include/libwebsockets/
Dlws-jws.h308 int idx, char *temp, int *temp_len, size_t random_len,