rc4.h

来自「非常不错的流密码rc4加解密程序 c语言编写 调试运行成功」· C头文件 代码 · 共 11 行

H
11
字号

#include "stdio.h"
#include "string.h"
#pragma comment(linker, "/subsystem:console")
struct rc4_state
{
	int x, y, m[256];
};
void rc4_setup( struct rc4_state *s, unsigned char *key,  int length );
void rc4_crypt( struct rc4_state *s, unsigned char *data, int length );

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?