pike.git/
src/
post_modules/
Nettle/
hash.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2014-12-04
2014-12-04 19:23:30 by Martin Nilsson <nilsson@opera.com>
c206668f5059db2e12734ea0a12cefec502296ef (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
bill/master_archive_support
More specific string types.
260:
} }
-
/*! @decl string(0..
255
) crypt_hash(string password, string salt, rounds)
+
/*! @decl string(0..
127
) crypt_hash(string password, string salt, rounds)
*! *! Password hashing function in @[crypt_md5()]-style. *!
273:
*! @seealso *! @[crypt_md5()] */
-
PIKEFUN string(0..
255
) crypt_hash(string password, string salt, int rounds)
+
PIKEFUN string(0..
127
) crypt_hash(string password, string salt, int rounds)
{ struct pike_string *res; const struct nettle_hash *meta = THIS->meta;