func golang.org/x/crypto/chacha20.NewUnauthenticatedCipher

5 uses

	golang.org/x/crypto/chacha20 (current package)
		chacha_generic.go#L72: func NewUnauthenticatedCipher(key, nonce []byte) (*Cipher, error) {

	golang.org/x/crypto/ssh
		cipher.go#L666: 	s, err := chacha20.NewUnauthenticatedCipher(c.contentKey[:], nonce)
		cipher.go#L680: 	ls, err := chacha20.NewUnauthenticatedCipher(c.lengthKey[:], nonce)
		cipher.go#L732: 	s, err := chacha20.NewUnauthenticatedCipher(c.contentKey[:], nonce)
		cipher.go#L758: 	ls, err := chacha20.NewUnauthenticatedCipher(c.lengthKey[:], nonce)