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

📄 pgpvrfysig.h

📁 著名的加密软件的应用于电子邮件中
💻 H
字号:
/*
* pgpVrfySig.h -- Signature Verification Code
*
* Copyright (C) 1995-1997 Pretty Good Privacy, Inc. All rights reserved.
*
* Written by: Derek Atkins <warlord@MIT.EDU>
*
* $Id: pgpVrfySig.h,v 1.3.2.1 1997/06/07 09:51:02 mhw Exp $
*/
#ifndef PGPVRFYSIG_H
#define PGPVRFYSIG_H

#include "pgpUsuals.h"

#ifdef __cplusplus
extern "C" {
#endif

struct PgpHashContext;
struct PgpPipeline;
struct PgpEnv;
struct PgpUICb;
struct PgpSig;

int pgpSigSetupPipeline (struct PgpPipeline **head, int *numhashes,
   struct PgpHashContext **hashes,
   byte const *hashlist, unsigned hashlen,
   byte const *charmap);

int pgpSigSetupHashes (struct PgpPipeline **tail, struct PgpEnv const *env,
  struct PgpHashContext **hashlist, int *hashnum,
  struct PgpSig const *siglist,
  struct PgpUICb const *ui, void *ui_arg);

int pgpSigVerify (struct PgpSig const *siglist, struct PgpHashContext *hashes,
  int numhashes, struct PgpUICb const *ui, void *arg);

int pgpSepsigVerify (struct PgpSig const *siglist, struct PgpEnv const *env,
  struct PgpUICb const *ui, void *ui_arg);

#ifdef __cplusplus
}
#endif

#endif /* PGPVRFYSIG_H */

⌨️ 快捷键说明

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