1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

rsa2_sign() is unused outside this file. Make it static.

[originally from svn r2483]
This commit is contained in:
Ben Harris 2003-01-05 23:32:19 +00:00
parent 4296e6b786
commit ce269ad024

View File

@ -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;