Skip to content

Commit

Permalink
fix multiline comment warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ryancdotorg committed Aug 28, 2015
1 parent 0433ae5 commit 1d653c1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions warpwallet.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@
#define openssl_pbkdf2(p, pl, s, ss, k, ks) \
PKCS5_PBKDF2_HMAC(p, pl, s, ss, _PBKDF2_i, EVP_sha256(), ks, k)

//#define libscrypt(p, pl, s, ss, k, ks) \
// libscrypt_scrypt(p, pl, s, ss, _SCRYPT_N, _SCRYPT_r, _SCRYPT_p, k, ks)
/*
#define libscrypt(p, pl, s, ss, k, ks) \
libscrypt_scrypt(p, pl, s, ss, _SCRYPT_N, _SCRYPT_r, _SCRYPT_p, k, ks)
*/

#define jane_scrypt(p, pl, s, ss, k, ks) \
scrypt(p, pl, s, ss, 17, 3, 0, k, ks)
Expand Down

0 comments on commit 1d653c1

Please sign in to comment.