crypto/cipher.Block.Encrypt (method)

10 uses

	crypto/cipher (current package)
		cbc.go#L88: 		x.b.Encrypt(dst[:x.blockSize], dst[:x.blockSize])
		cfb.go#L32: 			x.b.Encrypt(x.out, x.next)
		cipher.go#L21: 	Encrypt(dst, src []byte)
		ctr.go#L64: 		x.b.Encrypt(x.out[remain:], x.ctr)
		gcm.go#L130: 	cipher.Encrypt(key[:], key[:])
		gcm.go#L184: 	g.cipher.Encrypt(tagMask[:], counter[:])
		gcm.go#L221: 	g.cipher.Encrypt(tagMask[:], counter[:])
		gcm.go#L371: 		g.cipher.Encrypt(mask[:], counter[:])
		gcm.go#L380: 		g.cipher.Encrypt(mask[:], counter[:])
		ofb.go#L53: 		x.b.Encrypt(x.cipher, x.cipher)