mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: Remove cipher.h and put algo ids into a common file.
* common/openpgpdefs.h (cipher_algo_t, pubkey_algo_t, digest_algo_t) (compress_algo_t): New. * agent/gpg-agent.c: Remove ../g10/cipher.h. Add openpgpdefs.h. * g10/cipher.h (DEK): Move to ... * g10/dek.h: new file. * g10/cipher.h (is_RSA, is_ELGAMAL, is_DSA) (PUBKEY_MAX_NPKEY, PUBKEY_MAX_NSKEY, PUBKEY_MAX_NSIG, PUBKEY_MAX_NENC) (PUBKEY_USAGE_SIG, PUBKEY_USAGE_ENC, PUBKEY_USAGE_CERT) (PUBKEY_USAGE_AUTH, PUBKEY_USAGE_NONE): Move to * g10/packet.h: here. * g10/cipher.h: Remove. Remove from all files. * g10/filter.h, g10/packet.h: Include dek.h. * g10/Makefile.am (common_source): Remove cipher.h. Add dek.h. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
25b4c2acbd
commit
ea8a1685f7
25 changed files with 142 additions and 129 deletions
|
@ -22,7 +22,6 @@
|
|||
|
||||
#include "types.h"
|
||||
#include "iobuf.h"
|
||||
#include "cipher.h"
|
||||
#include "keydb.h"
|
||||
#include "util.h"
|
||||
|
||||
|
@ -43,6 +42,9 @@
|
|||
|
||||
#define S2K_DIGEST_ALGO (opt.s2k_digest_algo?opt.s2k_digest_algo:DEFAULT_S2K_DIGEST_ALGO)
|
||||
|
||||
|
||||
/* Various data objects. */
|
||||
|
||||
typedef struct
|
||||
{
|
||||
int header_okay;
|
||||
|
@ -52,6 +54,7 @@ typedef struct
|
|||
cipher_filter_context_t cfx;
|
||||
} encrypt_filter_context_t;
|
||||
|
||||
|
||||
struct groupitem
|
||||
{
|
||||
char *name;
|
||||
|
@ -59,6 +62,7 @@ struct groupitem
|
|||
struct groupitem *next;
|
||||
};
|
||||
|
||||
|
||||
/*-- gpg.c --*/
|
||||
extern int g10_errors_seen;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue