Home
last modified time | relevance | path

Searched refs:secureRenegotiation (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dhandshake_messages.go26 secureRenegotiation []byte member
59 bytes.Equal(m.secureRenegotiation, m1.secureRenegotiation) &&
60 (m.secureRenegotiation == nil) == (m1.secureRenegotiation == nil) &&
109 if m.secureRenegotiation != nil {
110 extensionsLength += 1 + len(m.secureRenegotiation)
297 if m.secureRenegotiation != nil {
301 z[3] = byte(1 + len(m.secureRenegotiation))
302 z[4] = byte(len(m.secureRenegotiation))
304 copy(z, m.secureRenegotiation)
305 z = z[len(m.secureRenegotiation):]
[all …]
Dhandshake_server.go262 if !bytes.Equal(c.clientVerify, hs.clientHello.secureRenegotiation) {
268 hs.hello.secureRenegotiation = append(hs.hello.secureRenegotiation, c.clientVerify...)
269 hs.hello.secureRenegotiation = append(hs.hello.secureRenegotiation, c.serverVerify...)
271 hs.hello.secureRenegotiation[0] ^= 0x80
274 hs.hello.secureRenegotiation = hs.clientHello.secureRenegotiation
278 hs.hello.secureRenegotiation = nil
Dhandshake_client.go68 secureRenegotiation: []byte{},
92 hello.secureRenegotiation = append(hello.secureRenegotiation, c.clientVerify...)
93 hello.secureRenegotiation[0] ^= 0x80
95 hello.secureRenegotiation = c.clientVerify
100 hello.secureRenegotiation = nil
279 if !bytes.Equal(serverHello.secureRenegotiation, expectedRenegInfo) {