Browse Source

make crypto_verify_32 static

Karel Miko 6 years ago
parent
commit
10056ed540
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/pk/ec25519/tweetnacl.c

+ 1 - 1
src/pk/ec25519/tweetnacl.c

@@ -39,7 +39,7 @@ static int vn(const u8 *x,const u8 *y,int n)
   return (1 & ((d - 1) >> 8)) - 1;
   return (1 & ((d - 1) >> 8)) - 1;
 }
 }
 
 
-int crypto_verify_32(const u8 *x,const u8 *y)
+static int crypto_verify_32(const u8 *x,const u8 *y)
 {
 {
   return vn(x,y,32);
   return vn(x,y,32);
 }
 }