📄 pgppasscach.h
字号:
/*
* pgpPassCach.h -- A Passphrase Cache
*
* Written by: Derek Atkins <warlord@MIT.EDU>
*
* $Id: pgpPassCach.h,v 1.8 1997/06/25 19:41:27 lloyd Exp $
*/
#ifndef Included_pgpPassCach_h
#define Included_pgpPassCach_h
#include "pgpUsuals.h"
PGP_BEGIN_C_DECLARATIONS
#include "pgpOpaqueStructs.h"
PGPPassCache *pgpPassCacheCreate (PGPEnv const *env);
void pgpPassCacheDestroy (PGPPassCache *cache);
int pgpPassCacheAdd (PGPPassCache *cache, char const *pass,
size_t passlen);
int pgpPassCacheTryEsk (PGPPassCache const *cache,
PGPESK const *esk,
int (*tryKey) (void *arg, PGPByte const *key,
size_t keylen),
void *tryarg, PGPByte *key, size_t *keylen);
int pgpPassCacheTryKey (PGPPassCache const *cache,
PGPSecKey *seckey);
PGP_END_C_DECLARATIONS
#endif /* Included_pgpPassCach_h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -