mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 09:12:24 +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;
|
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;
|
struct RSAKey *rsa = (struct RSAKey *) key;
|
||||||
unsigned char *bytes;
|
unsigned char *bytes;
|
||||||
|
Loading…
Reference in New Issue
Block a user