HomeSort by relevance Sort by last modified time
    Searched refs:ssl2 (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/net/third_party/nss/ssl/
sslnonce.c 121 SECITEM_ZfreeItem(&sid->u.ssl2.masterKey, PR_FALSE);
122 SECITEM_ZfreeItem(&sid->u.ssl2.cipherArg, PR_FALSE);
288 sid->u.ssl2.sessionID, sizeof(sid->u.ssl2.sessionID)));
290 sid->u.ssl2.masterKey.data, sid->u.ssl2.masterKey.len));
292 sid->u.ssl2.cipherArg.data, sid->u.ssl2.cipherArg.len));
355 zap->u.ssl2.cipherType));
358 zap->u.ssl2.sessionID, sizeof(zap->u.ssl2.sessionID)))
    [all...]
sslsnce.c 117 /*101 */} ssl2; member in union:sidCacheEntryStr::__anon14358
467 if ((from->u.ssl2.masterKey.len > SSL_MAX_MASTER_KEY_BYTES) ||
468 (from->u.ssl2.cipherArg.len > SSL_MAX_CYPHER_ARG_BYTES)) {
470 myPid, from->u.ssl2.masterKey.len,
471 from->u.ssl2.cipherArg.len));
476 to->u.ssl2.cipherType = from->u.ssl2.cipherType;
477 to->u.ssl2.masterKeyLen = from->u.ssl2.masterKey.len;
478 to->u.ssl2.cipherArgLen = from->u.ssl2.cipherArg.len
    [all...]
sslcon.c 2 * SSL v2 handshake functions, and functions common to SSL2 and SSL3.
193 /* fill in cipher specs for SSL2 cipher suites */
218 ** (e.g. SSL2 or SSL3) is logically enabled, but all its cipher suites
231 /* count the SSL2 and SSL3 enabled ciphers.
610 sendLen = 1 + sizeof(sid->u.ssl2.sessionID);
618 PORT_Memcpy(msg+1, sid->u.ssl2.sessionID,
619 sizeof(sid->u.ssl2.sessionID));
    [all...]
sslinfo.c 50 if (ss->version < SSL_LIBRARY_VERSION_3_0) { /* SSL2 */
70 if (ss->version < SSL_LIBRARY_VERSION_3_0) { /* SSL2 */
72 memcpy(inf.sessionID, sid->u.ssl2.sessionID,
sslsecur.c     [all...]
sslimpl.h 382 * SSL2: recv'd ciphertext records are put here, then decrypted in place.
388 /* number of bytes previously read into hdr or buf(ssl2) or inbuf (ssl3).
398 unsigned int count; /* ssl2 only */
403 unsigned int recordLen; /* ssl2 only */
409 unsigned int recordPadding; /* ssl2 only */
412 unsigned int recordOffset; /* ssl2 only */
414 int encrypted; /* SSL2 session is now encrypted. ssl2 only */
416 /* These next two values are used by SSL2 and SSL3.
438 ** For SSL2, the plaintext portion is two bytes long. For SSl3 it is 5
666 } ssl2; member in union:sslSessionIDStr::__anon14338
    [all...]
  /external/chromium_org/net/socket/
ssl_session_cache_openssl_unittest.cc 223 // Second call should find the session ID and associate it with |ssl2|.
224 ScopedSSL ssl2(NewSSL(key));
225 EXPECT_TRUE(cache_.SetSSLSession(ssl2.get()));
227 EXPECT_EQ(session, ssl2.get()->session);
238 ScopedSSL ssl2(NewSSL(key));
239 EXPECT_TRUE(cache_.SetSSLSessionWithKey(ssl2.get(), key));
247 ScopedSSL ssl2(NewSSL(common_key));
255 AddToCache(ssl2.get());
258 EXPECT_EQ(2, ssl2.get()->session->references);
280 // fail to associate it with |ssl2|
    [all...]
ssl_client_socket_pool_unittest.cc 271 SSLSocketDataProvider ssl2(ASYNC, ERR_SSL_PROTOCOL_ERROR);
272 ssl2.is_in_session_cache = false;
285 socket_factory_.AddSSLSocketDataProvider(&ssl2);
343 SSLSocketDataProvider ssl2(ASYNC, OK);
344 ssl2.is_in_session_cache = false;
345 ssl2.should_pause_on_connect = true;
350 socket_factory_.AddSSLSocketDataProvider(&ssl2);
416 SSLSocketDataProvider ssl2(ASYNC, OK);
417 ssl2.is_in_session_cache = false;
421 socket_factory_.AddSSLSocketDataProvider(&ssl2);
    [all...]
  /external/openssl/android.testssl/
testssl 36 $ssltest -ssl2 $extra || exit 1
39 $ssltest -ssl2 -server_auth $CA $extra || exit 1
43 $ssltest -ssl2 -client_auth $CA $extra || exit 1
46 $ssltest -ssl2 -server_auth -client_auth $CA $extra || exit 1
77 $ssltest -bio_pair -ssl2 $extra || exit 1
80 $ssltest -bio_pair -ssl2 -server_auth $CA $extra || exit 1
84 $ssltest -bio_pair -ssl2 -client_auth $CA $extra || exit 1
87 $ssltest -bio_pair -ssl2 -server_auth -client_auth $CA $extra || exit 1
  /external/chromium_org/third_party/tlslite/tlslite/
messages.py 25 self.ssl2 = False
45 self.ssl2 = False
53 self.ssl2 = True
102 def __init__(self, ssl2=False):
104 self.ssl2 = ssl2
137 if self.ssl2:
tlsrecordlayer.py 767 if recordHeader.ssl2:
793 yield ClientHello(recordHeader.ssl2).parse(p)
    [all...]
  /external/openssl/ssl/
ssltest.c 346 fprintf(stderr," -ssl2 - use SSLv2\n");
508 int tls1=0,ssl2=0,ssl3=0,ret=1; local
662 else if (strcmp(*argv,"-ssl2") == 0)
663 ssl2=1;
799 if (!ssl2 && !ssl3 && !tls1 && number > 1 && !reuse && !force)
803 "or add one of -ssl2, -ssl3, -tls1, -reuse\n"
878 if (ssl2)
    [all...]
ssl.h     [all...]
  /external/chromium_org/net/http/
http_network_transaction_unittest.cc     [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
ssl.h 321 unsigned long algorithm2; /* Extra flags. See SSL2_CF_* in ssl2.h
    [all...]
  /external/openssl/include/openssl/
ssl.h     [all...]

Completed in 3713 milliseconds