Searched refs:channelID (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/net/third_party/nss/patches/ |
D | channelid.patch | 16 + if (ss->ssl3.channelID != NULL) { 17 + SECKEY_DestroyPrivateKey(ss->ssl3.channelID); 18 + ss->ssl3.channelID = NULL; 48 + &ss->ssl3.channelIDPub, &ss->ssl3.channelID); 55 + ss->ssl3.channelID == NULL) { 162 + if (ss->ssl3.channelID == NULL) 167 + if (SECKEY_GetPrivateKeyType(ss->ssl3.channelID) != ecKey || 168 + PK11_SignatureLen(ss->ssl3.channelID) != sizeof(signature)) { 232 + rv = PK11_Sign(ss->ssl3.channelID, &signature_item, &digest_item); 244 + if (ss->ssl3.channelID) { [all …]
|
/external/chromium_org/third_party/boringssl/src/ssl/test/runner/ |
D | handshake_client.go | 714 channelID := make([]byte, 128) 715 writeIntPadded(channelID[0:32], c.config.ChannelID.X) 716 writeIntPadded(channelID[32:64], c.config.ChannelID.Y) 717 writeIntPadded(channelID[64:96], r) 718 writeIntPadded(channelID[96:128], s) 719 encryptedExtensions.channelID = channelID 721 c.channelID = &c.config.ChannelID.PublicKey
|
D | handshake_server.go | 646 x := new(big.Int).SetBytes(encryptedExtensions.channelID[0:32]) 647 y := new(big.Int).SetBytes(encryptedExtensions.channelID[32:64]) 648 r := new(big.Int).SetBytes(encryptedExtensions.channelID[64:96]) 649 s := new(big.Int).SetBytes(encryptedExtensions.channelID[96:128]) 653 channelID := &ecdsa.PublicKey{elliptic.P256(), x, y} 658 if !ecdsa.Verify(channelID, hs.finishedHash.hashForChannelID(resumeHash), r, s) { 661 c.channelID = channelID
|
D | handshake_messages.go | 1587 channelID []byte member 1597 bytes.Equal(m.channelID, m1.channelID) 1605 length := 2 + 2 + len(m.channelID) 1614 x[6] = uint8(len(m.channelID) >> 8) 1615 x[7] = uint8(len(m.channelID) & 0xff) 1616 copy(x[8:], m.channelID) 1632 m.channelID = data[4+2+2:]
|
D | runner.go | 532 channelID := tlsConn.ConnectionState().ChannelID 533 if channelID == nil { 536 if channelID.Curve != channelIDKey.Curve ||
|
D | conn.go | 52 channelID *ecdsa.PublicKey member 1114 state.ChannelID = c.channelID
|
/external/chromium_org/device/bluetooth/ |
D | bluetooth_socket_mac.mm | 105 channelID:(BluetoothRFCOMMChannelID)channelID; 114 channelID:(BluetoothRFCOMMChannelID)channelID { 125 withChannelID:channelID 509 channelID:registered_channel_id]);
|
/external/chromium_org/net/third_party/nss/ssl/ |
D | sslsecur.c | 1633 SECKEYPrivateKey *channelID) in SSL_RestartHandshakeAfterChannelIDReq() argument 1655 channelID); in SSL_RestartHandshakeAfterChannelIDReq() 1662 SECKEY_DestroyPrivateKey(channelID); in SSL_RestartHandshakeAfterChannelIDReq()
|
D | ssl3con.c | 6399 if (ss->ssl3.channelID != NULL) { in ssl3_HandleServerHello() 6400 SECKEY_DestroyPrivateKey(ss->ssl3.channelID); in ssl3_HandleServerHello() 6401 ss->ssl3.channelID = NULL; in ssl3_HandleServerHello() 6735 &ss->ssl3.channelIDPub, &ss->ssl3.channelID); in ssl3_HandleServerHello() 6742 ss->ssl3.channelID == NULL) { in ssl3_HandleServerHello() 10812 if (ss->ssl3.channelID == NULL) in ssl3_SendEncryptedExtensions() 10817 if (SECKEY_GetPrivateKeyType(ss->ssl3.channelID) != ecKey || in ssl3_SendEncryptedExtensions() 10818 PK11_SignatureLen(ss->ssl3.channelID) != sizeof(signature)) { in ssl3_SendEncryptedExtensions() 10882 rv = PK11_Sign(ss->ssl3.channelID, &signature_item, &digest_item); in ssl3_SendEncryptedExtensions() 10894 if (ss->ssl3.channelID) { in ssl3_SendEncryptedExtensions() [all …]
|
D | ssl.h | 1097 SECKEYPrivateKey *channelID);
|
D | sslimpl.h | 1010 SECKEYPrivateKey *channelID; /* used by client */ member 1648 SECKEYPrivateKey *channelID);
|