mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-26 09:42:25 +00:00
Make SHA_Core_Init() (only used in this file) static.
[originally from svn r2470]
This commit is contained in:
parent
089030b296
commit
2d86617f31
2
sshsha.c
2
sshsha.c
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
#define rol(x,y) ( ((x) << (y)) | (((uint32)x) >> (32-y)) )
|
#define rol(x,y) ( ((x) << (y)) | (((uint32)x) >> (32-y)) )
|
||||||
|
|
||||||
void SHA_Core_Init(uint32 h[5])
|
static void SHA_Core_Init(uint32 h[5])
|
||||||
{
|
{
|
||||||
h[0] = 0x67452301;
|
h[0] = 0x67452301;
|
||||||
h[1] = 0xefcdab89;
|
h[1] = 0xefcdab89;
|
||||||
|
Loading…
Reference in New Issue
Block a user