Searched refs:etick (Results 1 – 1 of 1) sorted by relevance
/external/openssl/ssl/ |
D | t1_lib.c | 785 static int tls_decrypt_ticket(SSL *s, const unsigned char *etick, int eticklen, in tls_decrypt_ticket() argument 804 unsigned char *nctick = (unsigned char *)etick; in tls_decrypt_ticket() 817 if (memcmp(etick, s->ctx->tlsext_tick_key_name, 16)) in tls_decrypt_ticket() 822 s->ctx->tlsext_tick_aes_key, etick + 16); in tls_decrypt_ticket() 830 HMAC_Update(&hctx, etick, eticklen); in tls_decrypt_ticket() 833 if (memcmp(tick_hmac, etick + eticklen, mlen)) in tls_decrypt_ticket() 837 p = etick + 16 + EVP_CIPHER_CTX_iv_length(&ctx); in tls_decrypt_ticket()
|