Skip to content

Commit 261c1b2

Browse files
committed
[MOD] remove compiler warnings
1 parent 55f5446 commit 261c1b2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/crypto/pbkdf2sha512.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include <math.h>
44
#include <algorithm>
55
#include <exception>
6+
67
#include "hmac_sha512.h"
78

89
PBKDF2SHA512::PBKDF2SHA512()
@@ -40,8 +41,8 @@ std::vector<unsigned char> PBKDF2SHA512::derive(const std::string & P,
4041

4142

4243
std::vector<unsigned char> PBKDF2SHA512::F(const std::string & P,
43-
const std::string& S,
44-
int c, int i) {
44+
const std::string& /*S*/,
45+
int c, int/* i*/) {
4546
std::vector<unsigned char> U_LAST;
4647
std::vector<unsigned char> U_XOR(64,0);
4748

0 commit comments

Comments
 (0)