mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-01 19:42:48 -05:00
rsa2_sign() is unused outside this file. Make it static.
[originally from svn r2483]
This commit is contained in:
3
sshrsa.c
3
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;
|
||||
|
Reference in New Issue
Block a user