#include <nitro/crypto.h>
typedef struct CRYPTORC4Context
{
u8 i, j;
u8 padd[2];
u8 s[256];
} CRYPTORC4Context;
| i | Variable for internal use |
|---|---|
| j | Variable for internal use |
| padd | Variable for internal use |
| s | Variable for internal use |
Context structure that holds the internal information used for RC4 encryption and decryption.
2008/02/25 Initial version.
CONFIDENTIAL