diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-08-10 00:20:00 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-08-10 00:20:00 -0400 |
commit | a02bf5fc508c32e8617ff0528d1cc89ed56e3d03 (patch) | |
tree | f4d8201b7308ad5488c383ae7e447a761107387c /src/misc/crypt.c | |
parent | 2f437040e7911d9bef239588ea7ed6f4b9102922 (diff) | |
download | musl-a02bf5fc508c32e8617ff0528d1cc89ed56e3d03.tar.gz musl-a02bf5fc508c32e8617ff0528d1cc89ed56e3d03.tar.bz2 musl-a02bf5fc508c32e8617ff0528d1cc89ed56e3d03.tar.xz musl-a02bf5fc508c32e8617ff0528d1cc89ed56e3d03.zip |
add blowfish hash support to crypt
there are still some discussions going on about tweaking the code, but
at least thing brings us to the point of having something working in
the repository. hopefully the remaining major hashes (md5,sha) will
follow soon.
Diffstat (limited to 'src/misc/crypt.c')
-rw-r--r-- | src/misc/crypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/crypt.c b/src/misc/crypt.c index f35e13d8..fc5c4ee1 100644 --- a/src/misc/crypt.c +++ b/src/misc/crypt.c @@ -6,6 +6,6 @@ char *__crypt_r(const char *, const char *, struct crypt_data *); char *crypt(const char *key, const char *salt) { /* Note: update this size when we add more hash types */ - static char buf[21]; + static char buf[64]; return __crypt_r(key, salt, (struct crypt_data *)buf); } |