Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/test/runner/
Dhandshake_server.go1115 channelIDMsg, ok := msg.(*channelIDMsg)
1118 return unexpectedMessageError(channelIDMsg, msg)
1122 channelID, err := verifyChannelIDMessage(channelIDMsg, channelIDHash.Sum(nil))
1128 hs.writeClientHash(channelIDMsg.marshal())
1880 channelIDMsg, ok := msg.(*channelIDMsg)
1883 return unexpectedMessageError(channelIDMsg, msg)
1889 …channelID, err := verifyChannelIDMessage(channelIDMsg, hs.finishedHash.hashForChannelID(resumeHash…
1895 hs.writeClientHash(channelIDMsg.marshal())
2079 func verifyChannelIDMessage(channelIDMsg *channelIDMsg, channelIDHash []byte) (*ecdsa.PublicKey, er… argument
2080 x := new(big.Int).SetBytes(channelIDMsg.channelID[0:32])
[all …]
Dhandshake_client.go1893 channelIDMsg := new(channelIDMsg)
1909 channelIDMsg.channelID = channelID
1913 return channelIDMsg.marshal(), nil
Dhandshake_messages.go2432 type channelIDMsg struct { struct
2437 func (m *channelIDMsg) marshal() []byte { argument
2458 func (m *channelIDMsg) unmarshal(data []byte) bool { argument
Dconn.go1396 m = new(channelIDMsg)