0

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?

4

3 に答える 3

4

POSIXC標準のどのバージョンでも指定されていません。ただし注意してください:

crypt() 関数は文字列エンコーディング関数です。アルゴリズムは実装定義です。

于 2013-02-16T10:37:32.937 に答える
0
#include <unistd.h>

でコンパイルすることを忘れないでください

-lcrypt

于 2013-02-16T10:40:33.573 に答える
0

C ではありませんが、無料のライブラリがあります。

以下は、いくつかのソースコードを含むマニュアルページです。

楽しみ

http://linux.die.net/man/3/crypt

http://saa.dyndns.org/stewart/Software/my_crypt.c.html

于 2013-02-16T10:40:43.357 に答える