How do make my encryption algorithm encrypt more than 128 bits?
- by Ranhiru
OK, now I have coded for an implementation of AES-128 :)
It is working fine.
It takes in 128 bits, encrypts and returns 128 bits
So how do i enhance my function so that it can handle more than 128 bits?
How do i make the encryption algorithm handle larger strings?
Can the same algorithm be used to encrypt files? :)
The function definition is
public byte[] Cipher(byte[] input)
{
}