It is a link to full project developed by me to implement RC4 in matlab
I need code for image encryption using Rc4
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Please I need code of RC4 to image encryption ..
Thanks.
0 Commenti
Risposte (2)
kareem ahmed
il 6 Mag 2018
Modificato: Image Analyst
il 7 Mag 2018
17 Commenti
Walter Roberson
il 26 Gen 2022
What about decryption?
Sorry, I am not permitted to answer that question in more detail than "Call your decryption routine"
Once you have decrypted to a character vector then
bytes = uint8(decrypted_content);
filename = 'restored_image.tif';
[fid, msg] = fopen(filename, 'w');
if fid < 0; error('Could not open file "%s" for writing because "%s"', filename, msg); end
fwrite(fid, bytes, 'uint8');
fclose(fid)
The extension you use for filename should be the same as the original image file extension.
Mohammed Ali
il 27 Gen 2022
Sorry for ask a lot of questions That's just because i have academic project And thank you so much for your help I use matlab 2013
Saad Alzubaidi
il 14 Giu 2022
Modificato: DGM
il 14 Giu 2022
RC4 images encrypted code ... MATLAB (video walkthrough, 10 minutes)
https://youtu.be/-uoNW0AVuaQ
0 Commenti
Vedere anche
Categorie
Scopri di più su Encryption / Cryptography in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!