crypt (const char *key, const char *salt)
I saw it in code, but i could not find the implementation of this function. Is it some of the conventions of C?
crypt (const char *key, const char *salt)
I saw it in code, but i could not find the implementation of this function. Is it some of the conventions of C?
POSIX
C標準のどのバージョンでも指定されていません。ただし注意してください:
crypt() 関数は文字列エンコーディング関数です。アルゴリズムは実装定義です。
#include <unistd.h>
でコンパイルすることを忘れないでください
-lcrypt