diff options
Diffstat (limited to 'g10/main.h')
-rw-r--r-- | g10/main.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/g10/main.h b/g10/main.h index 21ec1f077..a0b96f984 100644 --- a/g10/main.h +++ b/g10/main.h @@ -60,6 +60,14 @@ struct groupitem struct groupitem *next; }; +struct weakhash +{ + int algo; + int rejection_shown; + struct weakhash *next; +}; + + /*-- gpg.c --*/ extern int g10_errors_seen; @@ -71,6 +79,7 @@ extern int g10_errors_seen; void print_pubkey_algo_note( int algo ); void print_cipher_algo_note( int algo ); void print_digest_algo_note( int algo ); +void additional_weak_digest (const char* digestname); /*-- armor.c --*/ char *make_radix64_string( const byte *data, size_t len ); |