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:
parent
4296e6b786
commit
ce269ad024
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;
|
||||
|
Loading…
Reference in New Issue
Block a user