Pārlūkot izejas kodu

changes &x -> x[0:] for array to slice conversion

R=gri
CC=golang-dev
https://golang.org/cl/1326042
v1.2.3
Russ Cox pirms 14 gadiem
vecāks
revīzija
06f6131702
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. +2
    -2
      conn.go

+ 2
- 2
conn.go Parādīt failu

@@ -171,7 +171,7 @@ func (hc *halfConn) decrypt(b *block) (bool, alert) {
remoteMAC := payload[n:]

hc.mac.Reset()
hc.mac.Write(&hc.seq)
hc.mac.Write(hc.seq[0:])
hc.incSeq()
hc.mac.Write(b.data)

@@ -188,7 +188,7 @@ func (hc *halfConn) encrypt(b *block) (bool, alert) {
// mac
if hc.mac != nil {
hc.mac.Reset()
hc.mac.Write(&hc.seq)
hc.mac.Write(hc.seq[0:])
hc.incSeq()
hc.mac.Write(b.data)
mac := hc.mac.Sum()


Notiek ielāde…
Atcelt
Saglabāt