⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aes_aux.h

📁 文件驱动加密,功能强大,可产生加密分区,支持AES,MD2,MD4,MD5MD2, MD4, MD5, RIPEMD-128, RIPEMD-160, SHA-1, SHA-224, SHA-256,
💻 H
字号:

// Copyright in this code is held by Dr B. R. Gladman but free direct or
// derivative use is permitted subject to acknowledgement of its origin.
// Dr B. R. Gladman                               .   25th January 2000.

#ifdef  __cplusplus
    extern  "C"
    {
#endif

IFREF   open_ifile(IFREF inf, const char *name);
OFREF   open_ofile(OFREF outf, const char *name);
void    close_ifile(IFREF inf);
void    close_ofile(OFREF outf);
char    *copy_str(char *s, const char *fstr);
void    put_char(OFREF outf, const char c);
void    put_string(OFREF outf, const char s[]);
void    con_char(const char c);
void    con_string(const char s[]);
bool    get_line(IFREF inf, char s[]);
void    block_out(const u1byte ty, const u1byte b[], OFREF outf, const u4byte len);

int     find_string(const char *s1, const char s2[]);
int     find_line(IFREF inf, char str[]);

u4byte  rand32(void);
u1byte  rand8(void);
int     block_in(u1byte l[], const char *p);
void    block_clear(u1byte l[], const u4byte len);
void    block_reverse(u1byte l[], const u4byte len);
void    block_copy(u1byte l[], const u1byte r[], const u4byte len);
void    block_xor(u1byte l[], const u1byte r[], const u4byte len);
bool    block_cmp(const u1byte l[], const u1byte r[], const u4byte len);
void    block_rndfill(u1byte l[], u4byte len);

void    put_dec(char *s, int val);
int     get_dec(const char *s);
int     cmp_nocase(const char *s1, const char *s2);
bool    test_args(int argc, char *argv[], char des_chr, char tst_chr);

#ifdef  __cplusplus
    }
#endif

⌨️ 快捷键说明

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