Example program to test AES-GCM functionality. Used for a workshop

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

arc4_context Struct Reference

arc4_context Struct Reference

ARC4 context structure. More...

#include <arc4.h>

Data Fields

int x
int y
unsigned char m [256]

Detailed Description

ARC4 context structure.

Definition at line 49 of file arc4.h.


Field Documentation

unsigned char m[256]

permutation table

Definition at line 53 of file arc4.h.

int x

permutation index

Definition at line 51 of file arc4.h.

int y

permutation index

Definition at line 52 of file arc4.h.