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