Searched refs:crypt (Results 1 - 25 of 122) sorted by relevance

12345

/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dcrypt.h1 /* Generic crypt.h */
22 /* crypt() may be defined in a separate include file */
24 # include <crypt.h>
26 extern char *(crypt)();
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/pwcheck/
H A Dpwcheck_getpwnam.c28 extern char *crypt();
44 else if (strcmp(pwd->pw_passwd, crypt(password, pwd->pw_passwd)) != 0) {
H A Dpwcheck_getspnam.c28 extern char *crypt();
41 if (strcmp(pwd->sp_pwdp, crypt(password, pwd->sp_pwdp)) != 0) {
/macosx-10.10.1/CPANInternal-159.1/Crypt-Rijndael-1.10/t/rt/
H A D27632.t24 my $crypt = $cipher->encrypt( $in_plain );
27 diag( "Crypt text: [$crypt]" ) if $ENV{DEBUG};
29 my $digest = md5_hex( $crypt );
30 diag( "MD5 digest of crypt: [$digest]" ) if $ENV{DEBUG};
37 my $out_plain = $cipher->decrypt( $crypt );
39 diag( "Crypt text: [$crypt]" ) if $ENV{DEBUG};
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dpppcrypt.h59 #include <crypt.h>
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dverify.c41 #include <crypt.h>
55 if(strcmp(crypt(password, pw->pw_passwd), pw->pw_passwd) == 0)
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dxcrypt.c32 # include <crypt.h>
69 crypted = crypt(password, salt);
74 crypted = crypt(password, salt);
78 crypted = crypt(password, salt);
H A Dport-uw.c31 # include <crypt.h>
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/tests/
H A Dt-rsa.cpp41 unsigned char crypt[1024]; variable
88 check(B_EncryptUpdate(enc, crypt, &inLen, sizeof(crypt),
91 check(B_EncryptFinal(enc, crypt, &inLen, sizeof(crypt), random, NULL));
99 crypt, inLen, random, NULL));
H A Dt-dsa.cpp91 check(B_EncryptUpdate(enc, crypt, &inLen, sizeof(crypt),
94 check(B_EncryptFinal(enc, crypt, &inLen, sizeof(crypt), random, NULL));
102 crypt, inLen, random, NULL));
/macosx-10.10.1/CommonCrypto-60061/lib/
H A DCommonCryptorRC4.c55 ccrc4_eay.crypt(ctx, len, indata, outdata);
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Dmd5crypt_test.c58 c = crypt (t->str, t->salt);
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/corecrypto/
H A Dccrc4.h25 void (*crypt)(ccrc4_ctx *ctx, unsigned long nbytes, const void *in, void *out); member in struct:ccrc4_info
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dauth_getpwent.c31 * crypt(3) based passwd file validation
47 #include <crypt.h>
109 if (strcmp(pw->pw_passwd, (const char *)crypt(password, pw->pw_passwd))) {
H A Dauth_shadow.c51 #include <crypt.h>
112 char *cpw; /* pointer to crypt() result */
214 cpw = strdup((const char *)crypt(password, sp->sp_pwdp));
290 if (strcmp(upw->upw_passwd, crypt(password, upw->upw_passwd)) != 0) {
/macosx-10.10.1/ruby-106/ruby/lib/webrick/httpauth/
H A Dbasicauth.rb44 pass.crypt(Utils::random_string(2))
83 if password.crypt(encpass) != encpass
/macosx-10.10.1/system_cmds-643.1.1/makekey.tproj/
H A Dmakekey.c87 len = strlen(r = crypt(key, salt));
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/
H A Dcrypt.c2 * crypt.c --
4 * Implements the 'crypt' and 'md5crypt' commands.
27 * CVS: $Id: crypt.c,v 1.7 2000/11/18 22:42:31 aku Exp $
45 * This procedure is invoked to process the "crypt" Tcl command.
65 * crypt <passwd> <salt>
69 Tcl_SetObjResult (interp, Tcl_NewStringObj ("crypt is not available under Windows", -1));
78 "wrong # args: should be \"crypt passwd salt\"",
86 /* THREADING: Serialize access to result string of 'crypt'.
90 res = Tcl_NewStringObj ((char*) crypt (passwd, salt), -1);
148 * The 'crypt
[all...]
H A Dloadman.h79 # include "../md5-crypt/md5.h"
80 # include "../md5-crypt/trf_crypt.h"
117 const char* (* crypt) _ANSI_ARGS_ ((const char* key, const char* salt)); member in struct:Md5Functions
/macosx-10.10.1/apache-793/httpd/modules/lua/
H A Dlua_passwd.c32 #include <crypt.h>
123 cbuf = crypt(pw, salt);
126 ctx->errstr = apr_psprintf(ctx->pool, "crypt() failed: %pm", &rv);
135 if (!strcmp(ctx->out, crypt(truncpw, salt))) {
/macosx-10.10.1/OpenPAM-20/openpam/modules/pam_unix/
H A Dpam_unix.c51 # include <crypt.h>
123 (crypt_password = crypt(password, pwd->pw_passwd)) == NULL ||
/macosx-10.10.1/apr-32/apr-util/apr-util/crypto/
H A Dapr_passwd.c28 #include <crypt.h>
71 * crypt() (if available) or apr_md5_encode() or apr_sha1_base64(), depending
74 * support crypt, then the default check is against a clear text string.
101 * It's not our algorithm, so feed it to crypt() if possible.
162 * call to crypt().
165 crypt_pw = crypt(passwd, hash);
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/compat/
H A DtclLoadNone.c71 extern int crypt ();
145 { "crypt", crypt },
/macosx-10.10.1/sudo-73/src/auth/
H A Dsecureware.c90 if (strcmp(pw_epasswd, crypt(pass, pw_epasswd)) == 0)
/macosx-10.10.1/tcl-105/tcl_ext/trf/
H A DMakefile44 $(_v) $(RMDIR) $(SRCROOT)/$(Project)/md5-crypt $(SRCROOT)/$(Project)/win

Completed in 191 milliseconds

12345