how can i modify this code to encrypt an image?what is an encryption key?how can i include this key to generate pseudo random sequence?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I=double(imread('filename')); [m n]=size(I); for i=1:m for j=1:n r=randi(m,n,255) end end p=xor(I,r)
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Encryption / Cryptography finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!