#include <nitro/crypto.h>
typedef struct CRYPTORC4FastContext
{
u8 i, j;
u8 padd[2];
u8 s[256];
} CRYPTORC4FastContext;
| i | 内部使用領域 |
|---|---|
| j | 内部使用領域 |
| padd | 内部使用領域 |
| s | 内部使用領域 |
RC4 暗号/復号化に用いる内部情報などを収めるコンテキスト構造体です。
CRYPTO_RC4Fast 系関数で使用します。
2008/2/25 初版