Searched refs:version_good (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds3_srvr.c1843 uint8_t version_good; local
1953 * then version_good will be zero. The Klima-Pokorny-Rosa
1959 version_good = premaster_secret[0] ^ (s->client_version>>8);
1960 version_good |= premaster_secret[1] ^ (s->client_version&0xff);
1962 /* If any bits in version_good are set then they'll poision
1965 decrypt_good_mask |= version_good;
/external/openssl/ssl/
H A Ds3_srvr.c2332 unsigned char decrypt_good, version_good; local
2400 * then version_good will be 0xff, otherwise it'll be zero.
2406 version_good = constant_time_eq_8(p[0], (unsigned)(s->client_version>>8));
2407 version_good &= constant_time_eq_8(p[1], (unsigned)(s->client_version&0xff));
2421 version_good |= workaround_good;
2426 decrypt_good &= version_good;

Completed in 112 milliseconds