Searched refs:crypt_make_salt (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/loginutils/
H A Dcryptpw.c20 crypt_make_salt(salt + 3, 4, 0); /* md5 */
22 crypt_make_salt(salt, 1, 0); /* des */
H A Dchpasswd.c47 rnd = crypt_make_salt(salt, 1, rnd);
50 rnd = crypt_make_salt(salt + 3, 4, rnd);
H A Dpasswd.c54 crypt_make_salt(salt, 1, 0); /* des */
57 crypt_make_salt(salt + 3, 4, 0);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dcrypt_make_salt.c3 * crypt_make_salt
27 int crypt_make_salt(char *p, int cnt, int x) function
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/include/
H A Dlibbb.h802 * Useful if you call crypt_make_salt many times in a row:
803 * rnd = crypt_make_salt(buf1, 4, 0);
804 * rnd = crypt_make_salt(buf2, 4, rnd);
805 * rnd = crypt_make_salt(buf3, 4, rnd);
808 extern int crypt_make_salt(char *p, int cnt, int rnd);

Completed in 24 milliseconds