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

📄 sha1.h

📁 压缩软件源码
💻 H
字号:
// sha1.h
// This file is based on public domain 
// Steve Reid and Wei Dai's code from Crypto++

#ifndef __RAR_SHA1#define __RAR_SHA1#include <stddef.h>
#include "../../../Common/Types.h"

#define HW 5struct CSHA1
{  UInt32 m_State[5];  UInt64 m_Count;
  unsigned char _buffer[64];
  void Transform(const UInt32 data[16]);
  void WriteByteBlock();
  
  void Init();
  void Update(const Byte *data, size_t size);
  void Final(Byte *digest);
};#endif

⌨️ 快捷键说明

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