diff options
author | Werner Koch <[email protected]> | 1998-07-06 10:23:57 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-07-06 10:23:57 +0000 |
commit | a9ec668cbe5b3335f5db0f05b8e9e88e29ada52c (patch) | |
tree | e159c79b615fcdcb65f31ee5d1d0a2b1ba84e9aa /g10/gpgd.c | |
parent | partly added creation of OP partial length headers (diff) | |
download | gnupg-a9ec668cbe5b3335f5db0f05b8e9e88e29ada52c.tar.gz gnupg-a9ec668cbe5b3335f5db0f05b8e9e88e29ada52c.zip |
intermediate release
Diffstat (limited to 'g10/gpgd.c')
-rw-r--r-- | g10/gpgd.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/g10/gpgd.c b/g10/gpgd.c index 34158b7f9..da7a990dc 100644 --- a/g10/gpgd.c +++ b/g10/gpgd.c @@ -249,6 +249,18 @@ g10_exit( int rc ) exit(rc ); } +void +do_not_use_RSA() +{ + static int did_rsa_note = 0; + + if( !did_rsa_note ) { + did_rsa_note = 1; + log_info("RSA keys are depreciated; please consider " + "creating a new key and use this key in the future\n"); + } +} + static void become_daemon() |