Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
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!

Réponse acceptée

Geoff Hayes
Geoff Hayes le 23 Mai 2014
Modifié(e) : Geoff Hayes le 23 Mai 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 commentaires
Anis Zaitunah
Anis Zaitunah le 1 Juil 2021
If the string (to encrypt) is more than 16 bytes, how to encryp?
Geoff Hayes
Geoff Hayes le 2 Juil 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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Encryption / Cryptography dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by