is there any function called crypt in C? Or i have to build that function myself? -
is there any function called crypt in C? Or i have to build that function myself? -
crypt (const char *key, const char *salt)
i saw in code, not find implementation of function. of conventions of c?
it's specified posix
not version of c standard. careful though:
the crypt() function string encoding function. the algorithm implementation-defined.
c function encryption passwords
Comments
Post a Comment