func github.com/gotd/ige.EncryptBlocks

6 uses

	github.com/gotd/ige (current package)
		encrypt.go#L29: 	EncryptBlocks(i.block, i.iv, dst, src)
		encrypt.go#L35: func EncryptBlocks(block cipher.Block, iv, dst, src []byte) {

	github.com/gotd/td/internal/crypto
		cipher_encrypt.go#L33: 	ige.EncryptBlocks(aesBlock, iv[:], msg.EncryptedData, plaintext.Buf)
		exchange.go#L54: 	ige.EncryptBlocks(cipher, iv, dst, answerWithHash)
		rsa_pad.go#L86: 			ige.EncryptBlocks(aesBlock, zeroIV[:], aesEncrypted, dataWithHash)

	github.com/gotd/td/session/tdesktop
		local_key.go#L89: 	ige.EncryptBlocks(cipher, aesIV[:], encrypted[16:], decrypted)