Computes the cipher for a single block in CTR mode.
The sum of the IV and counter.
The 128-bit key.
The plaintext message block.
The ciphertext produced by XORing the plaintext with the key stream.
The key stream is computed by applying an iterative AES-128 encryption on the IV+counter.
Computes the cipher for a single block in CTR mode.