From: ben Date: Sun, 5 Jan 2003 23:32:19 +0000 (+0000) Subject: rsa2_sign() is unused outside this file. Make it static. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/164feb130cd91d1f878644cf8922ce23d457e8f6 rsa2_sign() is unused outside this file. Make it static. git-svn-id: svn://svn.tartarus.org/sgt/putty@2483 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/sshrsa.c b/sshrsa.c index 92c1ac91..e95f8b63 100644 --- a/sshrsa.c +++ b/sshrsa.c @@ -613,7 +613,8 @@ static int rsa2_verifysig(void *key, char *sig, int siglen, return ret; } -unsigned char *rsa2_sign(void *key, char *data, int datalen, int *siglen) +static unsigned char *rsa2_sign(void *key, char *data, int datalen, + int *siglen) { struct RSAKey *rsa = (struct RSAKey *) key; unsigned char *bytes;