crypto/cipher.Block.Encrypt (method)

9 uses

	crypto/cipher (current package)
		cbc.go#L98: 		x.b.Encrypt(dst[:x.blockSize], dst[:x.blockSize])
		cfb.go#L33: 			x.b.Encrypt(x.out, x.next)
		cipher.go#L21: 	Encrypt(dst, src []byte)
		ctr.go#L81: 		x.b.Encrypt(x.out[remain:], x.ctr)
		gcm.go#L260: 	g.cipher.Encrypt(H[:], H[:])
		gcm.go#L299: 	g.cipher.Encrypt(H[:], H[:])
		gcm.go#L337: 		b.Encrypt(mask[:], counter[:])
		gcm.go#L345: 		b.Encrypt(mask[:], counter[:])
		ofb.go#L64: 		x.b.Encrypt(x.cipher, x.cipher)