summaryrefslogtreecommitdiff
path: root/bcrypt/pybc_blf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-07-29 22:19:16 +1000
committerDamien Miller <djm@mindrot.org>2013-07-29 22:19:16 +1000
commit5c27645fd36e792752938d3ed185e76bd8def296 (patch)
tree82955bc164627239ef9390d219a59dbf58226048 /bcrypt/pybc_blf.h
parentfc240313d5a10d1e34858da866eb7a4574b1fd1c (diff)
downloadpy-bcrypt-5c27645fd36e792752938d3ed185e76bd8def296.tar.gz
fix -Wpointer-sign warnings
Diffstat (limited to 'bcrypt/pybc_blf.h')
-rw-r--r--bcrypt/pybc_blf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bcrypt/pybc_blf.h b/bcrypt/pybc_blf.h
index 28ca2e4..d890e4d 100644
--- a/bcrypt/pybc_blf.h
+++ b/bcrypt/pybc_blf.h
@@ -83,7 +83,7 @@ void pybc_blf_enc(pybc_blf_ctx *, u_int32_t *, u_int16_t);
u_int32_t pybc_Blowfish_stream2word(const u_int8_t *, u_int16_t, u_int16_t *);
/* KDF interface */
-int bcrypt_pbkdf(const char *pass, size_t passlen,
+int bcrypt_pbkdf(const u_int8_t *pass, size_t passlen,
const u_int8_t *salt, size_t saltlen,
u_int8_t *key, size_t keylen, unsigned int rounds);