Searched defs:crypt (Results 1 - 6 of 6) sorted by relevance
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | crypt.c | 30 /* The real crypt is now _crypt. This version performs automatic 36 crypt(pw, salt) function 52 * "##", crypt will act in the normal fashion. 65 * "#$", crypt will act in the normal fashion.
|
/illumos-gate/usr/src/lib/passwdutil/ |
H A D | files_attr.c | 448 crypt_passwd = crypt(passwd, s); 715 hash = crypt(p->data.val_s, salt); 1195 char *crypt; local 1206 crypt = strtok_r(NULL, ":", &last); 1207 if (crypt == NULL || 1208 *crypt == '\n') { 1211 (void) fprintf(dst, "%s:", crypt); 1212 debug("\t%d = %s:", i+1, crypt);
|
/illumos-gate/usr/src/cmd/keyserv/ |
H A D | chkey.c | 46 #include <crypt.h> 163 char *crypt = NULL; local 167 &crypt, TRUE)) { 168 /* Could not crypt key */ 169 crypt = NULL; 172 clist[mcount] = crypt; 175 char *crypt = NULL; local 177 if (!(crypt = 183 (void) memcpy(crypt, slist[0], HEXKEYBYTES); 184 (void) memcpy(crypt [all...] |
H A D | chkey_common.c | 39 extern char *crypt(); 471 char *crypt, 485 keys[1] = crypt; 731 char *crypt, 854 ckeyatval = (char *)malloc(strlen(mechname) + strlen(crypt) + 3); 863 sprintf(ckeyatval, "{%s}%s", mechname, crypt); 467 ldap_attr_mod(ns_ldap_entry_t *entry, char *mechname, char *public, ns_ldap_attr_t **pkeyattrs, char *crypt, ns_ldap_attr_t **ckeyattrs) argument 728 ldap_update(char *mechname, char *netname, char *public, char *crypt, char *passwd) argument
|
/illumos-gate/usr/src/lib/libast/common/uwin/ |
H A D | crypt.c | 42 static char sccsid[] = "@(#)crypt.c 8.1 (Berkeley) 6/4/93"; 45 #define crypt ______crypt macro 54 #undef crypt macro 121 * little effect on crypt(). 843 extern char * crypt(register const char *key, register const char *setting) { function
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | crypt.c | 27 #pragma weak _crypt = crypt 50 #include <crypt.h> 59 #define CRYPT_CONFFILE "/etc/security/crypt.conf" 81 * Since it also has to fit in crypt.conf it is CRYPT_CONFLINELENGTH 84 * CRYPT_MAXCIPHERTEXTLEN is defined in crypt.h and is smaller than 126 * crypt - string encoding function 131 * If the first character of salt is "$" then we use crypt.conf(4) to 144 crypt(const char *plaintext, const char *salt) function 169 * crypt.conf(4) to find out what shared object to use. 170 * If we can't find it in crypt [all...] |
Completed in 67 milliseconds