golang.org/x/crypto/ssh.streamPacketCipher.packetData (field)
9 uses
golang.org/x/crypto/ssh (current package)
cipher.go#L147: packetData []byte
cipher.go#L192: if uint32(cap(s.packetData)) < length-1+macSize {
cipher.go#L193: s.packetData = make([]byte, length-1+macSize)
cipher.go#L195: s.packetData = s.packetData[:length-1+macSize]
cipher.go#L198: if _, err := io.ReadFull(r, s.packetData); err != nil {
cipher.go#L201: mac := s.packetData[length-1:]
cipher.go#L202: data := s.packetData[:length-1]
cipher.go#L220: return s.packetData[:length-paddingLength-1], nil
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |