diff options
author | Werner Koch <wk@gnupg.org> | 1998-07-29 21:35:05 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-07-29 21:35:05 +0200 |
commit | 5ae562b41d9e3ec965643b902bf8593c8ca5a2d7 (patch) | |
tree | 059ed09c380b3f534479add19933dbe9a7a401c9 /g10/packet.h | |
parent | changed trustdb design (diff) | |
download | gnupg2-5ae562b41d9e3ec965643b902bf8593c8ca5a2d7.tar.xz gnupg2-5ae562b41d9e3ec965643b902bf8593c8ca5a2d7.zip |
edit-key is now complete
Diffstat (limited to 'g10/packet.h')
-rw-r--r-- | g10/packet.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/g10/packet.h b/g10/packet.h index cef9afe5c..6a35cd89e 100644 --- a/g10/packet.h +++ b/g10/packet.h @@ -258,7 +258,9 @@ void free_comment( PKT_comment *rem ); void free_packet( PACKET *pkt ); PKT_public_key *copy_public_key( PKT_public_key *d, PKT_public_key *s ); PKT_secret_key *copy_secret_key( PKT_secret_key *d, PKT_secret_key *s ); -int cmp_public_keys( PKT_public_key *a, PKT_public_key *b ); +PKT_signature *copy_signature( PKT_signature *d, PKT_signature *s ); +PKT_user_id *copy_user_id( PKT_user_id *d, PKT_user_id *s ); +int cmp_public_keys( PKT_public_key *d, PKT_public_key *s ); int cmp_public_secret_key( PKT_public_key *pk, PKT_secret_key *sk ); int cmp_user_ids( PKT_user_id *a, PKT_user_id *b ); @@ -298,4 +300,7 @@ int make_keysig_packet( PKT_signature **ret_sig, PKT_public_key *pk, int (*mksubpkt)(PKT_signature *, void *), void *opaque ); +/*-- keygen.c --*/ +PKT_user_id *generate_user_id(void); + #endif /*G10_PACKET_H*/ |