mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Epxerimenta support for GDBM keyings.
This commit is contained in:
parent
6e16296864
commit
e309a875cb
36 changed files with 1049 additions and 558 deletions
|
@ -886,10 +886,14 @@ proc_tree( CTX c, KBNODE node )
|
|||
c->local_id = 0;
|
||||
c->trustletter = ' ';
|
||||
if( node->pkt->pkttype == PKT_PUBLIC_KEY
|
||||
|| node->pkt->pkttype == PKT_PUBLIC_SUBKEY )
|
||||
|| node->pkt->pkttype == PKT_PUBLIC_SUBKEY ) {
|
||||
merge_keys_and_selfsig( node );
|
||||
list_node( c, node );
|
||||
else if( node->pkt->pkttype == PKT_SECRET_KEY )
|
||||
}
|
||||
else if( node->pkt->pkttype == PKT_SECRET_KEY ) {
|
||||
merge_keys_and_selfsig( node );
|
||||
list_node( c, node );
|
||||
}
|
||||
else if( node->pkt->pkttype == PKT_ONEPASS_SIG ) {
|
||||
/* check all signatures */
|
||||
if( !c->have_data ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue