?? mars.h
字號:
#ifndef MARS_H
#define MARS_H
#include "std_defs2.h"
#include <string>
using namespace std;
class mars : public AES
{
private:
u4byte l_key[40];
void set_key(const u1byte key[], const u4byte key_bits);
void encrypt(const u1byte in_blk[16], u1byte out_blk[16]);
void decrypt(const u1byte in_blk[16], u1byte out_blk[16]);
public:
char *name(void);
string encrypt(string str, bool ed = true);
string encrypt16(string str, bool ed = true);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -