mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-21 14:47:03 +01:00
* import.c (check_prefs_warning, check_prefs): --keyid-format conversion
and a little better text. (import_one, import_secret_one, import_revoke_cert, chk_self_sigs, delete_inv_parts, merge_blocks): Still more --keyid-format conversions.
This commit is contained in:
parent
a5208f2e1d
commit
309273f869
@ -1,3 +1,11 @@
|
|||||||
|
2004-03-15 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* import.c (check_prefs_warning, check_prefs): --keyid-format
|
||||||
|
conversion and a little better text.
|
||||||
|
(import_one, import_secret_one, import_revoke_cert, chk_self_sigs,
|
||||||
|
delete_inv_parts, merge_blocks): Still more --keyid-format
|
||||||
|
conversions.
|
||||||
|
|
||||||
2004-03-06 David Shaw <dshaw@jabberwocky.com>
|
2004-03-06 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* keylist.c (print_seckey_info, print_pubkey_info): --keyid-format
|
* keylist.c (print_seckey_info, print_pubkey_info): --keyid-format
|
||||||
|
367
g10/import.c
367
g10/import.c
@ -531,15 +531,23 @@ print_import_check (PKT_public_key * pk, PKT_user_id * id)
|
|||||||
m_free (buf);
|
m_free (buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
check_prefs_warning(PKT_public_key *pk)
|
||||||
|
{
|
||||||
|
log_info(_("WARNING: key %s contains preferences for unavailable\n"),
|
||||||
|
keystr_from_pk(pk));
|
||||||
|
log_info(_("algorithms on these user IDs:\n"));
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
check_prefs(KBNODE keyblock)
|
check_prefs(KBNODE keyblock)
|
||||||
{
|
{
|
||||||
KBNODE node;
|
KBNODE node;
|
||||||
u32 keyid[2];
|
PKT_public_key *pk;
|
||||||
int problem=0;
|
int problem=0;
|
||||||
|
|
||||||
merge_keys_and_selfsig(keyblock);
|
merge_keys_and_selfsig(keyblock);
|
||||||
keyid_from_pk(keyblock->pkt->pkt.public_key,keyid);
|
pk=keyblock->pkt->pkt.public_key;
|
||||||
|
|
||||||
for(node=keyblock;node;node=node->next)
|
for(node=keyblock;node;node=node->next)
|
||||||
{
|
{
|
||||||
@ -564,9 +572,7 @@ check_prefs(KBNODE keyblock)
|
|||||||
{
|
{
|
||||||
const char *algo=cipher_algo_to_string(prefs->value);
|
const char *algo=cipher_algo_to_string(prefs->value);
|
||||||
if(!problem)
|
if(!problem)
|
||||||
log_info(_("WARNING: key %08lX contains preferences"
|
check_prefs_warning(pk);
|
||||||
" for unavailable algorithms:\n"),
|
|
||||||
(ulong)keyid[1]);
|
|
||||||
log_info(_(" \"%s\": preference for cipher"
|
log_info(_(" \"%s\": preference for cipher"
|
||||||
" algorithm %s\n"),user,algo?algo:num);
|
" algorithm %s\n"),user,algo?algo:num);
|
||||||
problem=1;
|
problem=1;
|
||||||
@ -578,9 +584,7 @@ check_prefs(KBNODE keyblock)
|
|||||||
{
|
{
|
||||||
const char *algo=digest_algo_to_string(prefs->value);
|
const char *algo=digest_algo_to_string(prefs->value);
|
||||||
if(!problem)
|
if(!problem)
|
||||||
log_info(_("WARNING: key %08lX contains preferences"
|
check_prefs_warning(pk);
|
||||||
" for unavailable algorithms:\n"),
|
|
||||||
(ulong)keyid[1]);
|
|
||||||
log_info(_(" \"%s\": preference for digest"
|
log_info(_(" \"%s\": preference for digest"
|
||||||
" algorithm %s\n"),user,algo?algo:num);
|
" algorithm %s\n"),user,algo?algo:num);
|
||||||
problem=1;
|
problem=1;
|
||||||
@ -592,9 +596,7 @@ check_prefs(KBNODE keyblock)
|
|||||||
{
|
{
|
||||||
const char *algo=compress_algo_to_string(prefs->value);
|
const char *algo=compress_algo_to_string(prefs->value);
|
||||||
if(!problem)
|
if(!problem)
|
||||||
log_info(_("WARNING: key %08lX contains preferences"
|
check_prefs_warning(pk);
|
||||||
" for unavailable algorithms:\n"),
|
|
||||||
(ulong)keyid[1]);
|
|
||||||
log_info(_(" \"%s\": preference for compression"
|
log_info(_(" \"%s\": preference for compression"
|
||||||
" algorithm %s\n"),user,algo?algo:num);
|
" algorithm %s\n"),user,algo?algo:num);
|
||||||
problem=1;
|
problem=1;
|
||||||
@ -621,7 +623,7 @@ check_prefs(KBNODE keyblock)
|
|||||||
char username[(MAX_FINGERPRINT_LEN*2)+1];
|
char username[(MAX_FINGERPRINT_LEN*2)+1];
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
p=fingerprint_from_pk(keyblock->pkt->pkt.public_key,fpr,&fprlen);
|
p=fingerprint_from_pk(pk,fpr,&fprlen);
|
||||||
for(i=0;i<fprlen;i++,p++)
|
for(i=0;i<fprlen;i++,p++)
|
||||||
sprintf(username+2*i,"%02X",*p);
|
sprintf(username+2*i,"%02X",*p);
|
||||||
add_to_strlist(&locusr,username);
|
add_to_strlist(&locusr,username);
|
||||||
@ -635,7 +637,7 @@ check_prefs(KBNODE keyblock)
|
|||||||
}
|
}
|
||||||
else if(!opt.quiet)
|
else if(!opt.quiet)
|
||||||
log_info(_("you can update your preferences with:"
|
log_info(_("you can update your preferences with:"
|
||||||
" gpg --edit-key %08lX updpref save\n"),(ulong)keyid[1]);
|
" gpg --edit-key %s updpref save\n"),keystr_from_pk(pk));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -668,18 +670,21 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
keyid_from_pk( pk, keyid );
|
keyid_from_pk( pk, keyid );
|
||||||
uidnode = find_next_kbnode( keyblock, PKT_USER_ID );
|
uidnode = find_next_kbnode( keyblock, PKT_USER_ID );
|
||||||
|
|
||||||
if( opt.verbose && !opt.interactive ) {
|
if( opt.verbose && !opt.interactive )
|
||||||
log_info( "pub %4u%c/%08lX %s ",
|
{
|
||||||
|
log_info( "pub %4u%c/%s %s ",
|
||||||
nbits_from_pk( pk ),
|
nbits_from_pk( pk ),
|
||||||
pubkey_letter( pk->pubkey_algo ),
|
pubkey_letter( pk->pubkey_algo ),
|
||||||
(ulong)keyid[1], datestr_from_pk(pk) );
|
keystr_from_pk(pk), datestr_from_pk(pk) );
|
||||||
if( uidnode )
|
if( uidnode )
|
||||||
print_utf8_string( stderr, uidnode->pkt->pkt.user_id->name,
|
print_utf8_string( stderr, uidnode->pkt->pkt.user_id->name,
|
||||||
uidnode->pkt->pkt.user_id->len );
|
uidnode->pkt->pkt.user_id->len );
|
||||||
putc('\n', stderr);
|
putc('\n', stderr);
|
||||||
}
|
}
|
||||||
if( !uidnode ) {
|
|
||||||
log_error( _("key %08lX: no user ID\n"), (ulong)keyid[1]);
|
if( !uidnode )
|
||||||
|
{
|
||||||
|
log_error( _("key %s: no user ID\n"), keystr_from_pk(pk));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -699,8 +704,8 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
|
|
||||||
if((options&IMPORT_REPAIR_PKS_SUBKEY_BUG) && fix_pks_corruption(keyblock)
|
if((options&IMPORT_REPAIR_PKS_SUBKEY_BUG) && fix_pks_corruption(keyblock)
|
||||||
&& opt.verbose)
|
&& opt.verbose)
|
||||||
log_info(_("key %08lX: PKS subkey corruption repaired\n"),
|
log_info(_("key %s: PKS subkey corruption repaired\n"),
|
||||||
(ulong)keyid[1]);
|
keystr_from_pk(pk));
|
||||||
|
|
||||||
rc = chk_self_sigs( fname, keyblock , pk, keyid, &non_self );
|
rc = chk_self_sigs( fname, keyblock , pk, keyid, &non_self );
|
||||||
if( rc )
|
if( rc )
|
||||||
@ -714,13 +719,13 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
char *user=utf8_to_native(node->pkt->pkt.user_id->name,
|
char *user=utf8_to_native(node->pkt->pkt.user_id->name,
|
||||||
node->pkt->pkt.user_id->len,0);
|
node->pkt->pkt.user_id->len,0);
|
||||||
node->flag |= 1;
|
node->flag |= 1;
|
||||||
log_info( _("key %08lX: accepted non self-signed user ID '%s'\n"),
|
log_info( _("key %s: accepted non self-signed user ID '%s'\n"),
|
||||||
(ulong)keyid[1],user);
|
keystr_from_pk(pk),user);
|
||||||
m_free(user);
|
m_free(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
if( !delete_inv_parts( fname, keyblock, keyid, options ) ) {
|
if( !delete_inv_parts( fname, keyblock, keyid, options ) ) {
|
||||||
log_error( _("key %08lX: no valid user IDs\n"), (ulong)keyid[1]);
|
log_error( _("key %s: no valid user IDs\n"), keystr_from_pk(pk));
|
||||||
if( !opt.quiet )
|
if( !opt.quiet )
|
||||||
log_info(_("this may be caused by a missing self-signature\n"));
|
log_info(_("this may be caused by a missing self-signature\n"));
|
||||||
stats->no_user_id++;
|
stats->no_user_id++;
|
||||||
@ -730,14 +735,15 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
/* do we have this key already in one of our pubrings ? */
|
/* do we have this key already in one of our pubrings ? */
|
||||||
pk_orig = m_alloc_clear( sizeof *pk_orig );
|
pk_orig = m_alloc_clear( sizeof *pk_orig );
|
||||||
rc = get_pubkey_fast ( pk_orig, keyid );
|
rc = get_pubkey_fast ( pk_orig, keyid );
|
||||||
if( rc && rc != G10ERR_NO_PUBKEY && rc != G10ERR_UNU_PUBKEY ) {
|
if( rc && rc != G10ERR_NO_PUBKEY && rc != G10ERR_UNU_PUBKEY )
|
||||||
log_error( _("key %08lX: public key not found: %s\n"),
|
{
|
||||||
(ulong)keyid[1], g10_errstr(rc));
|
log_error( _("key %s: public key not found: %s\n"),
|
||||||
|
keystr(keyid), g10_errstr(rc));
|
||||||
}
|
}
|
||||||
else if ( rc && (opt.import_options&IMPORT_MERGE_ONLY) )
|
else if ( rc && (opt.import_options&IMPORT_MERGE_ONLY) )
|
||||||
{
|
{
|
||||||
if( opt.verbose )
|
if( opt.verbose )
|
||||||
log_info( _("key %08lX: new key - skipped\n"), (ulong)keyid[1] );
|
log_info( _("key %s: new key - skipped\n"), keystr(keyid));
|
||||||
rc = 0;
|
rc = 0;
|
||||||
stats->skipped_new_keys++;
|
stats->skipped_new_keys++;
|
||||||
}
|
}
|
||||||
@ -770,13 +776,15 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
keydb_release (hd);
|
keydb_release (hd);
|
||||||
|
|
||||||
/* we are ready */
|
/* we are ready */
|
||||||
if( !opt.quiet ) {
|
if( !opt.quiet )
|
||||||
|
{
|
||||||
char *p=get_user_id_printable (keyid);
|
char *p=get_user_id_printable (keyid);
|
||||||
log_info( _("key %08lX: public key \"%s\" imported\n"),
|
log_info( _("key %s: public key \"%s\" imported\n"),
|
||||||
(ulong)keyid[1],p);
|
keystr(keyid),p);
|
||||||
m_free(p);
|
m_free(p);
|
||||||
}
|
}
|
||||||
if( is_status_enabled() ) {
|
if( is_status_enabled() )
|
||||||
|
{
|
||||||
char *us = get_long_user_id_string( keyid );
|
char *us = get_long_user_id_string( keyid );
|
||||||
write_status_text( STATUS_IMPORTED, us );
|
write_status_text( STATUS_IMPORTED, us );
|
||||||
m_free(us);
|
m_free(us);
|
||||||
@ -793,9 +801,9 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
|
|
||||||
/* Compare the original against the new key; just to be sure nothing
|
/* Compare the original against the new key; just to be sure nothing
|
||||||
* weird is going on */
|
* weird is going on */
|
||||||
if( cmp_public_keys( pk_orig, pk ) ) {
|
if( cmp_public_keys( pk_orig, pk ) )
|
||||||
log_error( _("key %08lX: doesn't match our copy\n"),
|
{
|
||||||
(ulong)keyid[1]);
|
log_error( _("key %s: doesn't match our copy\n"),keystr(keyid));
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -810,16 +818,18 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
afp[an++] = 0;
|
afp[an++] = 0;
|
||||||
rc = keydb_search_fpr (hd, afp);
|
rc = keydb_search_fpr (hd, afp);
|
||||||
}
|
}
|
||||||
if( rc ) {
|
if( rc )
|
||||||
log_error (_("key %08lX: can't locate original keyblock: %s\n"),
|
{
|
||||||
(ulong)keyid[1], g10_errstr(rc));
|
log_error (_("key %s: can't locate original keyblock: %s\n"),
|
||||||
|
keystr(keyid), g10_errstr(rc));
|
||||||
keydb_release (hd);
|
keydb_release (hd);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
rc = keydb_get_keyblock (hd, &keyblock_orig );
|
rc = keydb_get_keyblock (hd, &keyblock_orig );
|
||||||
if (rc) {
|
if (rc)
|
||||||
log_error (_("key %08lX: can't read original keyblock: %s\n"),
|
{
|
||||||
(ulong)keyid[1], g10_errstr(rc));
|
log_error (_("key %s: can't read original keyblock: %s\n"),
|
||||||
|
keystr(keyid), g10_errstr(rc));
|
||||||
keydb_release (hd);
|
keydb_release (hd);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
@ -846,26 +856,27 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
revalidation_mark ();
|
revalidation_mark ();
|
||||||
|
|
||||||
/* we are ready */
|
/* we are ready */
|
||||||
if( !opt.quiet ) {
|
if( !opt.quiet )
|
||||||
|
{
|
||||||
char *p=get_user_id_printable(keyid);
|
char *p=get_user_id_printable(keyid);
|
||||||
if( n_uids == 1 )
|
if( n_uids == 1 )
|
||||||
log_info( _("key %08lX: \"%s\" 1 new user ID\n"),
|
log_info( _("key %s: \"%s\" 1 new user ID\n"),
|
||||||
(ulong)keyid[1], p);
|
keystr(keyid),p);
|
||||||
else if( n_uids )
|
else if( n_uids )
|
||||||
log_info( _("key %08lX: \"%s\" %d new user IDs\n"),
|
log_info( _("key %s: \"%s\" %d new user IDs\n"),
|
||||||
(ulong)keyid[1], p, n_uids );
|
keystr(keyid),p,n_uids);
|
||||||
if( n_sigs == 1 )
|
if( n_sigs == 1 )
|
||||||
log_info( _("key %08lX: \"%s\" 1 new signature\n"),
|
log_info( _("key %s: \"%s\" 1 new signature\n"),
|
||||||
(ulong)keyid[1], p);
|
keystr(keyid), p);
|
||||||
else if( n_sigs )
|
else if( n_sigs )
|
||||||
log_info( _("key %08lX: \"%s\" %d new signatures\n"),
|
log_info( _("key %s: \"%s\" %d new signatures\n"),
|
||||||
(ulong)keyid[1], p, n_sigs );
|
keystr(keyid), p, n_sigs );
|
||||||
if( n_subk == 1 )
|
if( n_subk == 1 )
|
||||||
log_info( _("key %08lX: \"%s\" 1 new subkey\n"),
|
log_info( _("key %s: \"%s\" 1 new subkey\n"),
|
||||||
(ulong)keyid[1], p);
|
keystr(keyid), p);
|
||||||
else if( n_subk )
|
else if( n_subk )
|
||||||
log_info( _("key %08lX: \"%s\" %d new subkeys\n"),
|
log_info( _("key %s: \"%s\" %d new subkeys\n"),
|
||||||
(ulong)keyid[1], p, n_subk );
|
keystr(keyid), p, n_subk );
|
||||||
m_free(p);
|
m_free(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -885,8 +896,7 @@ import_one( const char *fname, KBNODE keyblock,
|
|||||||
if( !opt.quiet )
|
if( !opt.quiet )
|
||||||
{
|
{
|
||||||
char *p=get_user_id_printable(keyid);
|
char *p=get_user_id_printable(keyid);
|
||||||
log_info( _("key %08lX: \"%s\" not changed\n"),
|
log_info( _("key %s: \"%s\" not changed\n"),keystr(keyid),p);
|
||||||
(ulong)keyid[1],p);
|
|
||||||
m_free(p);
|
m_free(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1010,11 +1020,12 @@ import_secret_one( const char *fname, KBNODE keyblock,
|
|||||||
keyid_from_sk( sk, keyid );
|
keyid_from_sk( sk, keyid );
|
||||||
uidnode = find_next_kbnode( keyblock, PKT_USER_ID );
|
uidnode = find_next_kbnode( keyblock, PKT_USER_ID );
|
||||||
|
|
||||||
if( opt.verbose ) {
|
if( opt.verbose )
|
||||||
log_info( "sec %4u%c/%08lX %s ",
|
{
|
||||||
|
log_info( "sec %4u%c/%s %s ",
|
||||||
nbits_from_sk( sk ),
|
nbits_from_sk( sk ),
|
||||||
pubkey_letter( sk->pubkey_algo ),
|
pubkey_letter( sk->pubkey_algo ),
|
||||||
(ulong)keyid[1], datestr_from_sk(sk) );
|
keystr_from_sk(sk), datestr_from_sk(sk) );
|
||||||
if( uidnode )
|
if( uidnode )
|
||||||
print_utf8_string( stderr, uidnode->pkt->pkt.user_id->name,
|
print_utf8_string( stderr, uidnode->pkt->pkt.user_id->name,
|
||||||
uidnode->pkt->pkt.user_id->len );
|
uidnode->pkt->pkt.user_id->len );
|
||||||
@ -1022,15 +1033,16 @@ import_secret_one( const char *fname, KBNODE keyblock,
|
|||||||
}
|
}
|
||||||
stats->secret_read++;
|
stats->secret_read++;
|
||||||
|
|
||||||
if( !uidnode ) {
|
if( !uidnode )
|
||||||
log_error( _("key %08lX: no user ID\n"), (ulong)keyid[1]);
|
{
|
||||||
|
log_error( _("key %s: no user ID\n"), keystr_from_sk(sk));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(sk->protect.algo>110)
|
if(sk->protect.algo>110)
|
||||||
{
|
{
|
||||||
log_error(_("key %08lX: secret key with invalid cipher %d "
|
log_error(_("key %s: secret key with invalid cipher %d"
|
||||||
"- skipped\n"),(ulong)keyid[1],sk->protect.algo);
|
" - skipped\n"),keystr_from_sk(sk),sk->protect.algo);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1057,7 +1069,7 @@ import_secret_one( const char *fname, KBNODE keyblock,
|
|||||||
keydb_release (hd);
|
keydb_release (hd);
|
||||||
/* we are ready */
|
/* we are ready */
|
||||||
if( !opt.quiet )
|
if( !opt.quiet )
|
||||||
log_info( _("key %08lX: secret key imported\n"), (ulong)keyid[1]);
|
log_info( _("key %s: secret key imported\n"), keystr_from_sk(sk));
|
||||||
stats->secret_imported++;
|
stats->secret_imported++;
|
||||||
if (is_status_enabled ())
|
if (is_status_enabled ())
|
||||||
print_import_ok (NULL, sk, 1|16);
|
print_import_ok (NULL, sk, 1|16);
|
||||||
@ -1084,9 +1096,10 @@ import_secret_one( const char *fname, KBNODE keyblock,
|
|||||||
release_kbnode(node);
|
release_kbnode(node);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if( !rc ) { /* we can't merge secret keys */
|
else if( !rc )
|
||||||
log_error( _("key %08lX: already in secret keyring\n"),
|
{ /* we can't merge secret keys */
|
||||||
(ulong)keyid[1]);
|
log_error( _("key %s: already in secret keyring\n"),
|
||||||
|
keystr_from_sk(sk));
|
||||||
stats->secret_dups++;
|
stats->secret_dups++;
|
||||||
if (is_status_enabled ())
|
if (is_status_enabled ())
|
||||||
print_import_ok (NULL, sk, 16);
|
print_import_ok (NULL, sk, 16);
|
||||||
@ -1095,8 +1108,8 @@ import_secret_one( const char *fname, KBNODE keyblock,
|
|||||||
the sec_to_pub_keyblock feature as well. */
|
the sec_to_pub_keyblock feature as well. */
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
log_error( _("key %08lX: secret key not found: %s\n"),
|
log_error( _("key %s: secret key not found: %s\n"),
|
||||||
(ulong)keyid[1], g10_errstr(rc));
|
keystr_from_sk(sk), g10_errstr(rc));
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
@ -1123,15 +1136,17 @@ import_revoke_cert( const char *fname, KBNODE node, struct stats_s *stats )
|
|||||||
|
|
||||||
pk = m_alloc_clear( sizeof *pk );
|
pk = m_alloc_clear( sizeof *pk );
|
||||||
rc = get_pubkey( pk, keyid );
|
rc = get_pubkey( pk, keyid );
|
||||||
if( rc == G10ERR_NO_PUBKEY ) {
|
if( rc == G10ERR_NO_PUBKEY )
|
||||||
log_error( _("key %08lX: no public key - "
|
{
|
||||||
"can't apply revocation certificate\n"), (ulong)keyid[1]);
|
log_error(_("key %s: no public key -"
|
||||||
|
" can't apply revocation certificate\n"), keystr(keyid));
|
||||||
rc = 0;
|
rc = 0;
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
else if( rc ) {
|
else if( rc )
|
||||||
log_error( _("key %08lX: public key not found: %s\n"),
|
{
|
||||||
(ulong)keyid[1], g10_errstr(rc));
|
log_error(_("key %s: public key not found: %s\n"),
|
||||||
|
keystr(keyid), g10_errstr(rc));
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1146,30 +1161,31 @@ import_revoke_cert( const char *fname, KBNODE node, struct stats_s *stats )
|
|||||||
afp[an++] = 0;
|
afp[an++] = 0;
|
||||||
rc = keydb_search_fpr (hd, afp);
|
rc = keydb_search_fpr (hd, afp);
|
||||||
}
|
}
|
||||||
if (rc) {
|
if (rc)
|
||||||
log_error (_("key %08lX: can't locate original keyblock: %s\n"),
|
{
|
||||||
(ulong)keyid[1], g10_errstr(rc));
|
log_error (_("key %s: can't locate original keyblock: %s\n"),
|
||||||
|
keystr(keyid), g10_errstr(rc));
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
rc = keydb_get_keyblock (hd, &keyblock );
|
rc = keydb_get_keyblock (hd, &keyblock );
|
||||||
if (rc) {
|
if (rc)
|
||||||
log_error (_("key %08lX: can't read original keyblock: %s\n"),
|
{
|
||||||
(ulong)keyid[1], g10_errstr(rc));
|
log_error (_("key %s: can't read original keyblock: %s\n"),
|
||||||
|
keystr(keyid), g10_errstr(rc));
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* it is okay, that node is not in keyblock because
|
/* it is okay, that node is not in keyblock because
|
||||||
* check_key_signature works fine for sig_class 0x20 in this
|
* check_key_signature works fine for sig_class 0x20 in this
|
||||||
* special case. */
|
* special case. */
|
||||||
rc = check_key_signature( keyblock, node, NULL);
|
rc = check_key_signature( keyblock, node, NULL);
|
||||||
if( rc ) {
|
if( rc )
|
||||||
log_error( _("key %08lX: invalid revocation certificate"
|
{
|
||||||
": %s - rejected\n"), (ulong)keyid[1], g10_errstr(rc));
|
log_error( _("key %s: invalid revocation certificate"
|
||||||
|
": %s - rejected\n"), keystr(keyid), g10_errstr(rc));
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* check whether we already have this */
|
/* check whether we already have this */
|
||||||
for(onode=keyblock->next; onode; onode=onode->next ) {
|
for(onode=keyblock->next; onode; onode=onode->next ) {
|
||||||
if( onode->pkt->pkttype == PKT_USER_ID )
|
if( onode->pkt->pkttype == PKT_USER_ID )
|
||||||
@ -1194,10 +1210,11 @@ import_revoke_cert( const char *fname, KBNODE node, struct stats_s *stats )
|
|||||||
keydb_get_resource_name (hd), g10_errstr(rc) );
|
keydb_get_resource_name (hd), g10_errstr(rc) );
|
||||||
keydb_release (hd); hd = NULL;
|
keydb_release (hd); hd = NULL;
|
||||||
/* we are ready */
|
/* we are ready */
|
||||||
if( !opt.quiet ) {
|
if( !opt.quiet )
|
||||||
|
{
|
||||||
char *p=get_user_id_printable (keyid);
|
char *p=get_user_id_printable (keyid);
|
||||||
log_info( _("key %08lX: \"%s\" revocation certificate imported\n"),
|
log_info( _("key %s: \"%s\" revocation certificate imported\n"),
|
||||||
(ulong)keyid[1],p);
|
keystr(keyid),p);
|
||||||
m_free(p);
|
m_free(p);
|
||||||
}
|
}
|
||||||
stats->n_revoc++;
|
stats->n_revoc++;
|
||||||
@ -1259,9 +1276,10 @@ chk_self_sigs( const char *fname, KBNODE keyblock,
|
|||||||
|
|
||||||
if( (sig->sig_class&~3) == 0x10 ) {
|
if( (sig->sig_class&~3) == 0x10 ) {
|
||||||
KBNODE unode = find_prev_kbnode( keyblock, n, PKT_USER_ID );
|
KBNODE unode = find_prev_kbnode( keyblock, n, PKT_USER_ID );
|
||||||
if( !unode ) {
|
if( !unode )
|
||||||
log_error( _("key %08lX: no user ID for signature\n"),
|
{
|
||||||
(ulong)keyid[1]);
|
log_error( _("key %s: no user ID for signature\n"),
|
||||||
|
keystr(keyid));
|
||||||
return -1; /* the complete keyblock is invalid */
|
return -1; /* the complete keyblock is invalid */
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1275,11 +1293,11 @@ chk_self_sigs( const char *fname, KBNODE keyblock,
|
|||||||
char *p=utf8_to_native(unode->pkt->pkt.user_id->name,
|
char *p=utf8_to_native(unode->pkt->pkt.user_id->name,
|
||||||
strlen(unode->pkt->pkt.user_id->name),0);
|
strlen(unode->pkt->pkt.user_id->name),0);
|
||||||
log_info( rc == G10ERR_PUBKEY_ALGO ?
|
log_info( rc == G10ERR_PUBKEY_ALGO ?
|
||||||
_("key %08lX: unsupported public key "
|
_("key %s: unsupported public key "
|
||||||
"algorithm on user id \"%s\"\n"):
|
"algorithm on user id \"%s\"\n"):
|
||||||
_("key %08lX: invalid self-signature "
|
_("key %s: invalid self-signature "
|
||||||
"on user id \"%s\"\n"),
|
"on user id \"%s\"\n"),
|
||||||
(ulong)keyid[1],p);
|
keystr(keyid),p);
|
||||||
m_free(p);
|
m_free(p);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1292,33 +1310,39 @@ chk_self_sigs( const char *fname, KBNODE keyblock,
|
|||||||
like the rest of gpg. If the standard gets
|
like the rest of gpg. If the standard gets
|
||||||
revocation targets, this may need to be revised. */
|
revocation targets, this may need to be revised. */
|
||||||
|
|
||||||
if( !knode ) {
|
if( !knode )
|
||||||
|
{
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info( _("key %08lX: no subkey for key binding\n"),
|
log_info( _("key %s: no subkey for key binding\n"),
|
||||||
(ulong)keyid[1]);
|
keystr(keyid));
|
||||||
n->flag |= 4; /* delete this */
|
n->flag |= 4; /* delete this */
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
|
{
|
||||||
rc = check_key_signature( keyblock, n, NULL);
|
rc = check_key_signature( keyblock, n, NULL);
|
||||||
if( rc ) {
|
if( rc )
|
||||||
|
{
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info(rc == G10ERR_PUBKEY_ALGO ?
|
log_info(rc == G10ERR_PUBKEY_ALGO ?
|
||||||
_("key %08lX: unsupported public key algorithm\n"):
|
_("key %s: unsupported public key"
|
||||||
_("key %08lX: invalid subkey binding\n"),
|
" algorithm\n"):
|
||||||
(ulong)keyid[1]);
|
_("key %s: invalid subkey binding\n"),
|
||||||
|
keystr(keyid));
|
||||||
n->flag|=4;
|
n->flag|=4;
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
|
{
|
||||||
/* It's valid, so is it newer? */
|
/* It's valid, so is it newer? */
|
||||||
if(sig->timestamp>=bsdate) {
|
if(sig->timestamp>=bsdate) {
|
||||||
knode->flag |= 1; /* the subkey is valid */
|
knode->flag |= 1; /* the subkey is valid */
|
||||||
if(bsnode) {
|
if(bsnode)
|
||||||
|
{
|
||||||
bsnode->flag|=4; /* Delete the last binding
|
bsnode->flag|=4; /* Delete the last binding
|
||||||
sig since this one is
|
sig since this one is
|
||||||
newer */
|
newer */
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info(_("key %08lX: removed multiple subkey "
|
log_info(_("key %s: removed multiple subkey"
|
||||||
"binding\n"),(ulong)keyid[1]);
|
" binding\n"),keystr(keyid));
|
||||||
}
|
}
|
||||||
|
|
||||||
bsnode=n;
|
bsnode=n;
|
||||||
@ -1336,33 +1360,39 @@ chk_self_sigs( const char *fname, KBNODE keyblock,
|
|||||||
the binding sig is newer than the revocation sig.
|
the binding sig is newer than the revocation sig.
|
||||||
See the comment in getkey.c:merge_selfsigs_subkey for
|
See the comment in getkey.c:merge_selfsigs_subkey for
|
||||||
more */
|
more */
|
||||||
if( !knode ) {
|
if( !knode )
|
||||||
|
{
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info( _("key %08lX: no subkey for key revocation\n"),
|
log_info( _("key %s: no subkey for key revocation\n"),
|
||||||
(ulong)keyid[1]);
|
keystr(keyid));
|
||||||
n->flag |= 4; /* delete this */
|
n->flag |= 4; /* delete this */
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
|
{
|
||||||
rc = check_key_signature( keyblock, n, NULL);
|
rc = check_key_signature( keyblock, n, NULL);
|
||||||
if( rc ) {
|
if( rc )
|
||||||
|
{
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info(rc == G10ERR_PUBKEY_ALGO ?
|
log_info(rc == G10ERR_PUBKEY_ALGO ?
|
||||||
_("key %08lX: unsupported public key algorithm\n"):
|
_("key %s: unsupported public"
|
||||||
_("key %08lX: invalid subkey revocation\n"),
|
" key algorithm\n"):
|
||||||
(ulong)keyid[1]);
|
_("key %s: invalid subkey revocation\n"),
|
||||||
|
keystr(keyid));
|
||||||
n->flag|=4;
|
n->flag|=4;
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
|
{
|
||||||
/* It's valid, so is it newer? */
|
/* It's valid, so is it newer? */
|
||||||
if(sig->timestamp>=rsdate) {
|
if(sig->timestamp>=rsdate)
|
||||||
if(rsnode) {
|
{
|
||||||
|
if(rsnode)
|
||||||
|
{
|
||||||
rsnode->flag|=4; /* Delete the last revocation
|
rsnode->flag|=4; /* Delete the last revocation
|
||||||
sig since this one is
|
sig since this one is
|
||||||
newer */
|
newer */
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info(_("key %08lX: removed multiple subkey "
|
log_info(_("key %s: removed multiple subkey"
|
||||||
"revocation\n"),(ulong)keyid[1]);
|
" revocation\n"),keystr(keyid));
|
||||||
}
|
}
|
||||||
|
|
||||||
rsnode=n;
|
rsnode=n;
|
||||||
@ -1399,12 +1429,13 @@ delete_inv_parts( const char *fname, KBNODE keyblock,
|
|||||||
if( node->pkt->pkttype == PKT_USER_ID ) {
|
if( node->pkt->pkttype == PKT_USER_ID ) {
|
||||||
uid_seen = 1;
|
uid_seen = 1;
|
||||||
if( (node->flag & 2) || !(node->flag & 1) ) {
|
if( (node->flag & 2) || !(node->flag & 1) ) {
|
||||||
if( opt.verbose ) {
|
if( opt.verbose )
|
||||||
log_info( _("key %08lX: skipped user ID '"),
|
{
|
||||||
(ulong)keyid[1]);
|
char *p=utf8_to_native(node->pkt->pkt.user_id->name,
|
||||||
print_utf8_string( stderr, node->pkt->pkt.user_id->name,
|
node->pkt->pkt.user_id->len,0);
|
||||||
node->pkt->pkt.user_id->len );
|
log_info( _("key %s: skipped user ID '%s'\n"),
|
||||||
fputs("'\n", stderr );
|
keystr(keyid),p);
|
||||||
|
m_free(p);
|
||||||
}
|
}
|
||||||
delete_kbnode( node ); /* the user-id */
|
delete_kbnode( node ); /* the user-id */
|
||||||
/* and all following packets up to the next user-id */
|
/* and all following packets up to the next user-id */
|
||||||
@ -1422,10 +1453,9 @@ delete_inv_parts( const char *fname, KBNODE keyblock,
|
|||||||
else if( node->pkt->pkttype == PKT_PUBLIC_SUBKEY
|
else if( node->pkt->pkttype == PKT_PUBLIC_SUBKEY
|
||||||
|| node->pkt->pkttype == PKT_SECRET_SUBKEY ) {
|
|| node->pkt->pkttype == PKT_SECRET_SUBKEY ) {
|
||||||
if( (node->flag & 2) || !(node->flag & 1) ) {
|
if( (node->flag & 2) || !(node->flag & 1) ) {
|
||||||
if( opt.verbose ) {
|
if( opt.verbose )
|
||||||
log_info( _("key %08lX: skipped subkey\n"),
|
log_info( _("key %s: skipped subkey\n"),keystr(keyid));
|
||||||
(ulong)keyid[1]);
|
|
||||||
}
|
|
||||||
delete_kbnode( node ); /* the subkey */
|
delete_kbnode( node ); /* the subkey */
|
||||||
/* and all following signature packets */
|
/* and all following signature packets */
|
||||||
while( node->next
|
while( node->next
|
||||||
@ -1444,23 +1474,25 @@ delete_inv_parts( const char *fname, KBNODE keyblock,
|
|||||||
else if( node->pkt->pkttype == PKT_SIGNATURE &&
|
else if( node->pkt->pkttype == PKT_SIGNATURE &&
|
||||||
!node->pkt->pkt.signature->flags.exportable &&
|
!node->pkt->pkt.signature->flags.exportable &&
|
||||||
!(options&IMPORT_ALLOW_LOCAL_SIGS) &&
|
!(options&IMPORT_ALLOW_LOCAL_SIGS) &&
|
||||||
seckey_available( node->pkt->pkt.signature->keyid ) ) {
|
seckey_available( node->pkt->pkt.signature->keyid ) )
|
||||||
|
{
|
||||||
/* here we violate the rfc a bit by still allowing
|
/* here we violate the rfc a bit by still allowing
|
||||||
* to import non-exportable signature when we have the
|
* to import non-exportable signature when we have the
|
||||||
* the secret key used to create this signature - it
|
* the secret key used to create this signature - it
|
||||||
* seems that this makes sense */
|
* seems that this makes sense */
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info( _("key %08lX: non exportable signature "
|
log_info( _("key %s: non exportable signature"
|
||||||
" (class %02x) - skipped\n"),
|
" (class %02x) - skipped\n"),
|
||||||
(ulong)keyid[1], node->pkt->pkt.signature->sig_class );
|
keystr(keyid), node->pkt->pkt.signature->sig_class );
|
||||||
delete_kbnode( node );
|
delete_kbnode( node );
|
||||||
}
|
}
|
||||||
else if( node->pkt->pkttype == PKT_SIGNATURE
|
else if( node->pkt->pkttype == PKT_SIGNATURE
|
||||||
&& node->pkt->pkt.signature->sig_class == 0x20 ) {
|
&& node->pkt->pkt.signature->sig_class == 0x20 ) {
|
||||||
if( uid_seen ) {
|
if( uid_seen )
|
||||||
|
{
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info( _("key %08lX: revocation certificate "
|
log_info( _("key %s: revocation certificate"
|
||||||
"at wrong place - skipped\n"), (ulong)keyid[1]);
|
" at wrong place - skipped\n"),keystr(keyid));
|
||||||
delete_kbnode( node );
|
delete_kbnode( node );
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1476,9 +1508,9 @@ delete_inv_parts( const char *fname, KBNODE keyblock,
|
|||||||
if( rc )
|
if( rc )
|
||||||
{
|
{
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info( _("key %08lX: invalid revocation "
|
log_info( _("key %s: invalid revocation"
|
||||||
" certificate: %s - skipped\n"),
|
" certificate: %s - skipped\n"),
|
||||||
(ulong)keyid[1], g10_errstr(rc));
|
keystr(keyid), g10_errstr(rc));
|
||||||
delete_kbnode( node );
|
delete_kbnode( node );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1487,18 +1519,19 @@ delete_inv_parts( const char *fname, KBNODE keyblock,
|
|||||||
else if( node->pkt->pkttype == PKT_SIGNATURE &&
|
else if( node->pkt->pkttype == PKT_SIGNATURE &&
|
||||||
(node->pkt->pkt.signature->sig_class == 0x18 ||
|
(node->pkt->pkt.signature->sig_class == 0x18 ||
|
||||||
node->pkt->pkt.signature->sig_class == 0x28) &&
|
node->pkt->pkt.signature->sig_class == 0x28) &&
|
||||||
!subkey_seen ) {
|
!subkey_seen )
|
||||||
|
{
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info( _("key %08lX: subkey signature "
|
log_info( _("key %s: subkey signature"
|
||||||
"in wrong place - skipped\n"), (ulong)keyid[1]);
|
" in wrong place - skipped\n"), keystr(keyid));
|
||||||
delete_kbnode( node );
|
delete_kbnode( node );
|
||||||
}
|
}
|
||||||
else if( node->pkt->pkttype == PKT_SIGNATURE
|
else if( node->pkt->pkttype == PKT_SIGNATURE
|
||||||
&& !IS_CERT(node->pkt->pkt.signature))
|
&& !IS_CERT(node->pkt->pkt.signature))
|
||||||
{
|
{
|
||||||
if(opt.verbose)
|
if(opt.verbose)
|
||||||
log_info(_("key %08lX: unexpected signature class (0x%02X) -"
|
log_info(_("key %s: unexpected signature class (0x%02X) -"
|
||||||
" skipped\n"),(ulong)keyid[1],
|
" skipped\n"),keystr(keyid),
|
||||||
node->pkt->pkt.signature->sig_class);
|
node->pkt->pkt.signature->sig_class);
|
||||||
delete_kbnode(node);
|
delete_kbnode(node);
|
||||||
}
|
}
|
||||||
@ -1525,7 +1558,6 @@ collapse_uids( KBNODE *keyblock )
|
|||||||
KBNODE n, n2;
|
KBNODE n, n2;
|
||||||
int in_uid;
|
int in_uid;
|
||||||
int any=0;
|
int any=0;
|
||||||
u32 kid1;
|
|
||||||
|
|
||||||
restart:
|
restart:
|
||||||
for( n = *keyblock; n; n = n->next ) {
|
for( n = *keyblock; n; n = n->next ) {
|
||||||
@ -1589,15 +1621,17 @@ collapse_uids( KBNODE *keyblock )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( (n = find_kbnode( *keyblock, PKT_PUBLIC_KEY )) )
|
|
||||||
kid1 = keyid_from_pk( n->pkt->pkt.public_key, NULL );
|
|
||||||
else if( (n = find_kbnode( *keyblock, PKT_SECRET_KEY )) )
|
|
||||||
kid1 = keyid_from_sk( n->pkt->pkt.secret_key, NULL );
|
|
||||||
else
|
|
||||||
kid1 = 0;
|
|
||||||
if(!opt.quiet)
|
if(!opt.quiet)
|
||||||
log_info(_("key %08lX: duplicated user ID detected - merged\n"),
|
{
|
||||||
(ulong)kid1);
|
const char *key="???";
|
||||||
|
|
||||||
|
if( (n = find_kbnode( *keyblock, PKT_PUBLIC_KEY )) )
|
||||||
|
key=keystr_from_pk(n->pkt->pkt.public_key);
|
||||||
|
else if( (n = find_kbnode( *keyblock, PKT_SECRET_KEY )) )
|
||||||
|
key=keystr_from_sk(n->pkt->pkt.secret_key);
|
||||||
|
|
||||||
|
log_info(_("key %s: duplicated user ID detected - merged\n"),key);
|
||||||
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -1651,14 +1685,15 @@ revocation_present(KBNODE keyblock)
|
|||||||
MAX_FINGERPRINT_LEN);
|
MAX_FINGERPRINT_LEN);
|
||||||
if(rc==G10ERR_NO_PUBKEY || rc==G10ERR_UNU_PUBKEY)
|
if(rc==G10ERR_NO_PUBKEY || rc==G10ERR_UNU_PUBKEY)
|
||||||
{
|
{
|
||||||
|
char *tempkeystr=m_strdup(keystr_from_pk(pk));
|
||||||
|
|
||||||
/* No, so try and get it */
|
/* No, so try and get it */
|
||||||
if(opt.keyserver_scheme &&
|
if(opt.keyserver_scheme &&
|
||||||
opt.keyserver_options.auto_key_retrieve)
|
opt.keyserver_options.auto_key_retrieve)
|
||||||
{
|
{
|
||||||
log_info(_("WARNING: key %08lX may be revoked: "
|
log_info(_("WARNING: key %s may be revoked:"
|
||||||
"fetching revocation key %08lX\n"),
|
" fetching revocation key %s\n"),
|
||||||
(ulong)keyid_from_pk(pk,NULL),
|
tempkeystr,keystr(keyid));
|
||||||
(ulong)keyid[1]);
|
|
||||||
keyserver_import_fprint(sig->revkey[idx]->fpr,
|
keyserver_import_fprint(sig->revkey[idx]->fpr,
|
||||||
MAX_FINGERPRINT_LEN);
|
MAX_FINGERPRINT_LEN);
|
||||||
|
|
||||||
@ -1669,10 +1704,11 @@ revocation_present(KBNODE keyblock)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(rc==G10ERR_NO_PUBKEY || rc==G10ERR_UNU_PUBKEY)
|
if(rc==G10ERR_NO_PUBKEY || rc==G10ERR_UNU_PUBKEY)
|
||||||
log_info(_("WARNING: key %08lX may be revoked: "
|
log_info(_("WARNING: key %s may be revoked:"
|
||||||
"revocation key %08lX not present.\n"),
|
" revocation key %s not present.\n"),
|
||||||
(ulong)keyid_from_pk(pk,NULL),
|
tempkeystr,keystr(keyid));
|
||||||
(ulong)keyid[1]);
|
|
||||||
|
m_free(tempkeystr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1727,8 +1763,8 @@ merge_blocks( const char *fname, KBNODE keyblock_orig, KBNODE keyblock,
|
|||||||
if(!opt.quiet)
|
if(!opt.quiet)
|
||||||
{
|
{
|
||||||
char *p=get_user_id_printable (keyid);
|
char *p=get_user_id_printable (keyid);
|
||||||
log_info(_("key %08lX: \"%s\" revocation "
|
log_info(_("key %s: \"%s\" revocation"
|
||||||
"certificate added\n"), (ulong)keyid[1],p);
|
" certificate added\n"), keystr(keyid),p);
|
||||||
m_free(p);
|
m_free(p);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1754,14 +1790,15 @@ merge_blocks( const char *fname, KBNODE keyblock_orig, KBNODE keyblock,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if( !found ) {
|
if( !found )
|
||||||
|
{
|
||||||
KBNODE n2 = clone_kbnode(node);
|
KBNODE n2 = clone_kbnode(node);
|
||||||
insert_kbnode( keyblock_orig, n2, 0 );
|
insert_kbnode( keyblock_orig, n2, 0 );
|
||||||
n2->flag |= 1;
|
n2->flag |= 1;
|
||||||
++*n_sigs;
|
++*n_sigs;
|
||||||
if(!opt.quiet)
|
if(!opt.quiet)
|
||||||
log_info( _("key %08lX: direct key signature added\n"),
|
log_info( _("key %s: direct key signature added\n"),
|
||||||
(ulong)keyid[1]);
|
keystr(keyid));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user