diff options
author | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-26 14:19:43 +0000 |
---|---|---|
committer | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-26 14:19:43 +0000 |
commit | 7aff1e4cb053394db57c2814d5fe1e6493e0cc75 (patch) | |
tree | c8585e44049b37e4da152495c954242204c2c38d /cryptopp/PGPw/sdk8/include/pgpShare.h | |
parent | 6f3d69266933ef120d229e0daf2da164b77214d0 (diff) |
Project folders rename part 2
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@214 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'cryptopp/PGPw/sdk8/include/pgpShare.h')
-rw-r--r-- | cryptopp/PGPw/sdk8/include/pgpShare.h | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/cryptopp/PGPw/sdk8/include/pgpShare.h b/cryptopp/PGPw/sdk8/include/pgpShare.h deleted file mode 100644 index 04d6da5..0000000 --- a/cryptopp/PGPw/sdk8/include/pgpShare.h +++ /dev/null @@ -1,80 +0,0 @@ -/*____________________________________________________________________________ - Copyright (C) 2002 PGP Corporation - All rights reserved. - - $Id: pgpShare.h,v 1.1 2004/04/01 11:45:40 wprice Exp $ -____________________________________________________________________________*/ -#ifndef Included_pgpShare_h /* [ */ -#define Included_pgpShare_h - -#include "pgpConfig.h" -#include "pgpBase.h" -#include "pgpKeys.h" - -typedef struct PGPShare * PGPShareRef; - -typedef struct PGPShareID_ -{ - PGPByte data[8]; -} PGPShareID; - -#define kInvalidPGPShareRef ((PGPShareRef) NULL) -#define PGPShareRefIsValid( ref ) ( (ref) != kInvalidPGPShareRef ) - -PGP_BEGIN_C_DECLARATIONS -#if PRAGMA_IMPORT_SUPPORTED -#pragma import on -#endif - -PGPError PGPCreateShares(PGPContextRef context, PGPKeyDBObjRef key, - PGPUInt32 threshold, PGPUInt32 numShares, - PGPShareRef *share); - -/* The passkey needs to be freed with PGPFreeData(passkey) */ -PGPError PGPGetPasskeyFromShares(PGPShareRef share, PGPByte **passkey, - PGPSize *passkeySize); - -PGPError PGPSplitShares(PGPShareRef share, PGPUInt32 numShares, - PGPShareRef *splitShares); - -/* The share objects being combined are NOT freed by this function */ -PGPError PGPCombineShares(PGPShareRef firstShare, PGPShareRef secondShare, - PGPShareRef *combinedShares); - -PGPError PGPFreeShares(PGPShareRef share); - -PGPError PGPGetKeyIDFromShares(PGPShareRef share, PGPKeyID *id); - -PGPError PGPGetShareID(PGPShareRef share, PGPShareID *id); - -PGPUInt32 PGPGetShareThreshold(PGPShareRef share); - -/* This is the number of shares contained in the share object */ -PGPUInt32 PGPGetNumberOfShares(PGPShareRef share); - -/* The share object may contain less than the total number of shares */ -PGPUInt32 PGPGetTotalNumberOfShares(PGPShareRef share); - -PGPBoolean IsSamePGPShares(PGPShareRef firstShare, PGPShareRef secondShare); - -/* If firstID < secondID, -1 */ -/* If firstID > secondID, 1 */ -/* If firstID = secondID, 0 */ -PGPInt32 PGPCompareShareIDs(PGPShareID firstID, PGPShareID secondID); - -#if PRAGMA_IMPORT_SUPPORTED -#pragma import reset -#endif -PGP_END_C_DECLARATIONS - -#endif /* ] Included_pgpShare_h */ - - -/*__Editor_settings____ - - Local Variables: - tab-width: 4 - End: - vi: ts=4 sw=4 - vim: si -_____________________*/ |