How do to handle the case, when the string to be encrypted using AES is less than 16 bytes?

3 views (last 30 days)
AES code requires the string to be 16 bytes. How do I handle a case, when the string to be converted is less than 16 bytes both during encryption and decryption? Appreciate, if you could paste the code snippet?
You may refer to AES code at http://buchholz.hs-bremen.de/aes/aes.htm
Thanks a lot!

Accepted Answer

Geoff Hayes
Geoff Hayes on 23 May 2014
Edited: Geoff Hayes on 23 May 2014
If the string (to encrypt) is less than 16 bytes, then why not just pad with zeros? Looking at the documentation referenced from your above link ( http://buchholz.hs-bremen.de/aes/AES.pdf) the plaintext input to the cipher function is just an array of 16 doubles (presumably, the software only considers the first 8 bits from each double) converted from the plaintext string via hex2dec. So you could do something like the following with your plaintext hexadecimal string:
ptLen = length(plaintext); % get the length of the plaintext string
if ptLen>0 && ptLen<16
plaintext = [plaintext repmat({'00'},1,16-ptLen)]; % pad the plaintext
end % string with zeros
Now your plaintext string has length of 16, and the conversion from hexadecimal to decimal, and the encryption can proceed (as per the documentation).
The decryption shouldn't matter as the cipher text will be 16-bytes (I'm assuming this given my brief read of the document).
  4 Comments
Geoff Hayes
Geoff Hayes on 2 Jul 2021
Anis - I think that would would encrypt every block of 16 bytes and then, when you have a block that is less than 16 bytes, pad it with zeros. Perhaps.

Sign in to comment.

More Answers (0)

Categories

Find more on Encryption / Cryptography in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!