📄 crypto.h
字号:
/*
* Context for block cipher.
*/
typedef struct CipherContext {
// rc5 needs 104 bytes
// skipjack needs 32 * 4 = 128 bytes.
uint8_t context[128];
} CipherContext;
/**
* Context for the MAC
*/
typedef struct MACContext {
CipherContext cc;
uint8_t context[12];
} MACContext;
/**
* Context for the block cipher modes
*/
typedef struct CipherModeContext {
CipherContext cc;
uint8_t context[24];
} CipherModeContext;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -