Effacer les filtres
Effacer les filtres

How to convert an image for AES algorithm in Hexadecimal format input?

2 vues (au cours des 30 derniers jours)
Kushal Khaitan
Kushal Khaitan le 18 Jan 2013
Commenté : Radwa le 16 Jan 2015
I know how to convert the file in byte format by using
fid = fopen(FileName, 'r');
if fid == -1, error('Cannot open file'); end
data = fread(fid, Inf, '*uint8');
fclose(fid);
But I want the file in hexadecimal format. How to convert it in hexadecimal format??? If I use dec2hex then the size of the file is too much so i cannot use this. So, how to convert file in hexadecimal for AES.
Plz... help....thanx.

Réponse acceptée

Walter Roberson
Walter Roberson le 18 Jan 2013
datahex = sprintf('%02x', data);
  1 commentaire
Radwa
Radwa le 16 Jan 2015
How to decrease the bits( decrease the samplind from fopen?
I have DSPtoolbox

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by