Home
last modified time | relevance | path

Searched refs:OAUTH_GCM_NONCE_SIZE (Results 1 – 4 of 4) sorted by relevance

/dports/net/turnserver/coturn-4.5.2/src/apps/oauth/
H A Doauth.c211 char gcm_nonce[OAUTH_GCM_NONCE_SIZE+1]=""; in main()
337 if (nonce_size > OAUTH_GCM_NONCE_SIZE){ in main()
338 nonce_size=OAUTH_GCM_NONCE_SIZE; in main()
/dports/net/turnserver/coturn-4.5.2/src/client/
H A Dns_turn_msg.c2478 unsigned char nonce[OAUTH_GCM_NONCE_SIZE]; in encode_oauth_token_gcm()
2487 *((uint16_t*)(orig_field+len)) = nswap16(OAUTH_GCM_NONCE_SIZE); in encode_oauth_token_gcm()
2490 bcopy(nonce,orig_field+len,OAUTH_GCM_NONCE_SIZE); in encode_oauth_token_gcm()
2491 len += OAUTH_GCM_NONCE_SIZE; in encode_oauth_token_gcm()
2525 if(1 != EVP_CIPHER_CTX_ctrl(ctxp, EVP_CTRL_GCM_SET_IVLEN, OAUTH_GCM_NONCE_SIZE, NULL)) in encode_oauth_token_gcm()
2543 bcopy(orig_field,encoded_field,OAUTH_GCM_NONCE_SIZE + 2); in encode_oauth_token_gcm()
2544 encoded_field += OAUTH_GCM_NONCE_SIZE + 2; in encode_oauth_token_gcm()
2545 unsigned char *start_field = orig_field + OAUTH_GCM_NONCE_SIZE + 2; in encode_oauth_token_gcm()
2546 len -= OAUTH_GCM_NONCE_SIZE + 2; in encode_oauth_token_gcm()
2558 etoken->size = 2 + OAUTH_GCM_NONCE_SIZE + outl; in encode_oauth_token_gcm()
H A Dns_turn_msg_defs.h202 #define OAUTH_GCM_NONCE_SIZE (12) macro
/dports/net/turnserver/coturn-4.5.2/src/apps/rfc5769/
H A Drfc5769check.c86 const char gcm_nonce[OAUTH_GCM_NONCE_SIZE+1] = "h4j3k2l2n4b5"; in check_oauth()