diff options
author | jbj <devnull@localhost> | 2001-10-19 19:51:18 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-10-19 19:51:18 +0000 |
commit | e2dfa4f2d4f643ff2c47adfc8ae6b4b700c62b8b (patch) | |
tree | 6ce514ea2fc730cfdf1b666dffcb7625772dabf6 /lib/signature.h | |
parent | e2a842407516209b3447997d19879848d074c3d6 (diff) | |
download | librpm-tizen-e2dfa4f2d4f643ff2c47adfc8ae6b4b700c62b8b.tar.gz librpm-tizen-e2dfa4f2d4f643ff2c47adfc8ae6b4b700c62b8b.tar.bz2 librpm-tizen-e2dfa4f2d4f643ff2c47adfc8ae6b4b700c62b8b.zip |
- beecrypt is at least as good as pgp/gpg on verify, pull the plug.
CVS patchset: 5124
CVS date: 2001/10/19 19:51:18
Diffstat (limited to 'lib/signature.h')
-rw-r--r-- | lib/signature.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/signature.h b/lib/signature.h index 83856e3c4..1c70ce9b8 100644 --- a/lib/signature.h +++ b/lib/signature.h @@ -55,7 +55,7 @@ Header rpmNewSignature(void) */ rpmRC rpmReadSignature(FD_t fd, /*@null@*/ /*@out@*/ Header *headerp, sigType sig_type) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies fd, *headerp, fileSystem @*/; /** \ingroup signature @@ -65,7 +65,7 @@ rpmRC rpmReadSignature(FD_t fd, /*@null@*/ /*@out@*/ Header *headerp, * @return 0 on success, 1 on error */ int rpmWriteSignature(FD_t fd, Header h) - /*@globals fileSystem@*/ + /*@globals fileSystem @*/ /*@modifies fd, h, fileSystem @*/; /** \ingroup signature @@ -74,8 +74,8 @@ int rpmWriteSignature(FD_t fd, Header h) int rpmAddSignature(Header h, const char * file, int_32 sigTag, /*@null@*/ const char * passPhrase) /*@globals rpmGlobalMacroContext, - fileSystem@*/ - /*@modifies h, fileSystem @*/; + fileSystem @*/ + /*@modifies h, rpmGlobalMacroContext, fileSystem @*/; /******************************************************************/ @@ -89,15 +89,15 @@ int rpmAddSignature(Header h, const char * file, */ int rpmLookupSignatureType(int action) /*@globals rpmGlobalMacroContext, - internalState@*/ - /*@modifies internalState @*/; + internalState @*/ + /*@modifies rpmGlobalMacroContext, internalState @*/; /** \ingroup signature * Read a pass phrase from the user. */ /*@null@*/ char * rpmGetPassPhrase(const char *prompt, const int sigTag) /*@globals rpmGlobalMacroContext, - fileSystem@*/ + fileSystem @*/ /*@modifies rpmGlobalMacroContext, fileSystem @*/; @@ -108,7 +108,7 @@ int rpmLookupSignatureType(int action) /*@null@*/ const char * rpmDetectPGPVersion( /*@null@*/ /*@out@*/ pgpVersion * pgpVer) /*@globals rpmGlobalMacroContext @*/ - /*@modifies *pgpVer @*/; + /*@modifies *pgpVer, rpmGlobalMacroContext @*/; /*@=exportlocal =redecl@*/ #ifdef __cplusplus |