golang.org/x/crypto/ssh.gcmCipher.iv (field)

6 uses

	golang.org/x/crypto/ssh (current package)
		cipher.go#L306: 	iv     []byte
		cipher.go#L323: 		iv:   iv,
		cipher.go#L354: 	c.buf = c.aead.Seal(c.buf[:0], c.iv, c.buf, c.prefix[:])
		cipher.go#L365: 		c.iv[i]++
		cipher.go#L366: 		if c.iv[i] != 0 {
		cipher.go#L391: 	plain, err := c.aead.Open(c.buf[:0], c.iv, c.buf, c.prefix[:])