CRYPTORC4Context

Syntax

#include <nitro/crypto.h>

typedef struct CRYPTORC4Context
{
    u8 i, j;
    u8 padd[2];
    u8 s[256];
} CRYPTORC4Context;

Elements

i Variable for internal use
j Variable for internal use
padd Variable for internal use
s Variable for internal use

Description

Context structure that holds the internal information used for RC4 encryption and decryption.

Revision History

2008/02/25 Initial version.


CONFIDENTIAL