Skip to content

RodolpheThienard/AES128

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AES-128

Sommaire :

Calcul Matrice inverse :

int *foo = calloc(256, 4);
int *tmp = aes_table;
for(int i = 0; i < 256; i++)
{
    *(foo + tmp[i]) = i;
}

for(int j = 0; j < 16; j++)
{
    for(int i = 0; i< 16; i++)
    {
        printf("0x%02X,", foo[j*16 + i]);
    }
    printf("\n");
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •