]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
des_key_setup(), des_encipher(), and des_decipher() are unreferenced outside
authorBen Harris <bjh21@bjh21.me.uk>
Sun, 5 Jan 2003 23:12:58 +0000 (23:12 +0000)
committerBen Harris <bjh21@bjh21.me.uk>
Sun, 5 Jan 2003 23:12:58 +0000 (23:12 +0000)
this file.  Make them static.

[originally from svn r2479]

sshdes.c

index 5026d2ca03d18ade496bf63fd3aa9473bff71021..fa8e53ce451b690364c1710ac0bf43bdeaf9b1c9 100644 (file)
--- a/sshdes.c
+++ b/sshdes.c
@@ -296,7 +296,7 @@ static word32 bitsel(word32 * input, const int *bitnums, int size)
     return ret;
 }
 
-void des_key_setup(word32 key_msw, word32 key_lsw, DESContext * sched)
+static void des_key_setup(word32 key_msw, word32 key_lsw, DESContext * sched)
 {
 
     static const int PC1_Cbits[] = {
@@ -520,7 +520,8 @@ static const word32 SPboxes[8][64] = {
     bitswap(R, L, 16, 0x0000FFFF), \
     bitswap(R, L,  4, 0x0F0F0F0F))
 
-void des_encipher(word32 * output, word32 L, word32 R, DESContext * sched)
+static void des_encipher(word32 * output, word32 L, word32 R,
+                        DESContext * sched)
 {
     word32 swap, s0246, s1357;
 
@@ -559,7 +560,8 @@ void des_encipher(word32 * output, word32 L, word32 R, DESContext * sched)
     output[1] = R;
 }
 
-void des_decipher(word32 * output, word32 L, word32 R, DESContext * sched)
+static void des_decipher(word32 * output, word32 L, word32 R,
+                        DESContext * sched)
 {
     word32 swap, s0246, s1357;