Borrar filtros
Borrar filtros

S-Box with encryption image

11 visualizaciones (últimos 30 días)
omar A.alghafoor
omar A.alghafoor el 31 de Jul. de 2020
Comentada: Walter Roberson el 23 de Dic. de 2023
Hi .......
there are problem in time for encryption image by s-bos (16*16) GF, how are reduce time execution for this code ,
note : I use RGB for encryption .
x = dec2bin(layer_image(i,j),8);
l = x(1, 1 : 4);
r = x(1, 5 : 8);
ld = bin2dec(l); % row
rd = bin2dec(r); % column
layer_image(i,j)=SBox(ld+1,rd+1);

Respuestas (1)

Aishwarya
Aishwarya el 23 de Dic. de 2023
Editada: Walter Roberson el 23 de Dic. de 2023
x = dec2bin(layer_image(i,j),8);
l = x(1, 1 : 4);
r = x(1, 5 : 8);
ld = bin2dec(l); % row
rd = bin2dec(r); % column
layer_image(i,j)=SBox(ld+1,rd+1);
  1 comentario
Walter Roberson
Walter Roberson el 23 de Dic. de 2023
What difference is there between this and what was already posted?

Iniciar sesión para comentar.

Categorías

Más información sobre Encryption / Cryptography en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by