Lines Matching refs:char
42 void setkey(const char *key);
43 void encrypt(char *block, int edflag);
44 char *crypt(const char *pw, const char *salt);
47 int _run_setkey(int p[2], const char *keyparam);
48 int run_setkey(int p[2], const char *keyparam);
49 int _run_crypt(long offset, char *buffer, unsigned int count, int p[2]);
50 int run_crypt(long offset, char *buffer, unsigned int count, int p[2]);
58 int cbc_crypt(char *key, char *buf, size_t len, unsigned int mode, char *ivec);
59 int ecb_crypt(char *key, char *buf, size_t len, unsigned int mode);
62 void _des_setkey(const char *key);
63 void des_setkey(const char *key);
64 void _des_encrypt(char *block, int edflag);
65 void des_encrypt(char *block, int edflag);
66 char *des_crypt(const char *pw, const char *salt);
69 void _des_decrypt1(char *block, char *L, char *IP, char *R, char *preS,
70 char *E, char KS[][48], char S[][64], char *f,
71 char *tempL, char *P, char *FP);
74 void des_encrypt1(char *block, char *L, char *IP, char *R, char *preS,
75 char *E, char KS[][48], char S[][64], char *f,
76 char *tempL, char *P, char *FP);
77 void _des_encrypt1(char *block, char *L, char *IP, char *R, char *preS,
78 char *E, char KS[][48], char S[][64], char *f,
79 char *tempL, char *P, char *FP);
82 void des_setparity(char *p);
83 int __des_crypt(char *buf, unsigned len, struct desparams *desp);