freeotfemachmac.h
来自「文件驱动加密,功能强大,可产生加密分区,支持AES,MD2,MD4,MD5MD2」· C头文件 代码 · 共 47 行
H
47 行
// Description:
// By Sarah Dean
// Email: sdean12@sdean12.org
// WWW: http://www.FreeOTFE.org/
//
// -----------------------------------------------------------------------------
//
#ifndef _FreeOTFEMACHMAC_H
#define _FreeOTFEMACHMAC_H 1
#ifndef WINCE
#include <ntddk.h>
#endif
#include "FreeOTFEHashAPICommon.h"
// =========================================================================
// Function headers
// Generate HMAC
NTSTATUS
ImplMACHMAC(
IN PDataHashFn FnHash,
IN GUID HashGUID,
IN HASH HashDetails,
IN int tBits, // In *bits*
IN unsigned int KLength, // In bits
IN unsigned char* K,
IN unsigned int textLength, // In bits
IN unsigned char* text,
IN OUT unsigned int* MACLength, // In bits
OUT unsigned char* MAC
);
// =========================================================================
// =========================================================================
// =========================================================================
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?