freeotfe4pdahashdriver.h
来自「文件驱动加密,功能强大,可产生加密分区,支持AES,MD2,MD4,MD5MD2」· C头文件 代码 · 共 34 行
H
34 行
// Description:
// By Sarah Dean
// Email: sdean12@sdean12.org
// WWW: http://www.FreeOTFE.org/
//
// -----------------------------------------------------------------------------
//
#ifndef _FreeOTFE4PDAHashDriver_H
#define _FreeOTFE4PDAHashDriver_H 1
// =========================================================================
// Const definitions
// These values are in DECIMAL
#define DRIVER_HASH_VERSION_MAJOR 02
#define DRIVER_HASH_VERSION_MINOR 00
#define DRIVER_HASH_VERSION_BUILD 0000
#define DRIVER_HASH_VERSION ( \
(DRIVER_HASH_VERSION_MAJOR * 0x01000000) + \
(DRIVER_HASH_VERSION_MINOR * 0x00010000) + \
(DRIVER_HASH_VERSION_BUILD * 0x00000001) \
)
// =========================================================================
// =========================================================================
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?