X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=secnet.h;h=bd63a7c63f90681fd64fc34bdac97a56bbf723cb;hb=8db6adcb8cc98608c8e29e2b78b48d68be9dbef0;hp=7c650a9459f54e9ef2d0684fc1a4cad6911b6509;hpb=20c35278822db437d832e47166c5936a93e891fd;p=secnet.git diff --git a/secnet.h b/secnet.h index 7c650a9..bd63a7c 100644 --- a/secnet.h +++ b/secnet.h @@ -404,7 +404,7 @@ struct sigscheme_info; typedef bool_t sigscheme_loadpub(const struct sigscheme_info *algo, struct buffer_if *pubkeydata, struct sigpubkey_if **sigpub_r, - struct log_if *log); + struct log_if *log, struct cloc loc); /* pubkeydata is (supposedly) for this algorithm. * loadpub should log an error if it fails. * pubkeydata may be modified (but not freed) */ @@ -412,7 +412,7 @@ typedef bool_t sigscheme_loadpub(const struct sigscheme_info *algo, typedef bool_t sigscheme_loadpriv(const struct sigscheme_info *algo, struct buffer_if *privkeydata, struct sigprivkey_if **sigpriv_r, - struct log_if *log); + struct log_if *log, struct cloc loc); /* privkeydata may contain data for any algorithm, not necessarily * this one! If it is not for this algorithm, return False and do * not log anything (other than at M_DEBUG). If it *is* for this @@ -433,6 +433,9 @@ extern const struct sigscheme_info sigschemes[]; /* sentinel has name==0 */ const struct sigscheme_info *sigscheme_lookup(const char *name); +extern sigscheme_loadpriv rsa1_loadpriv; +extern sigscheme_loadpub rsa1_loadpub; + /***** END of signature schemes *****/ /***** CLOSURE TYPES and interface definitions *****/