Searched refs:pass (Results 1 - 25 of 681) sorted by relevance

1234567891011>>

/macosx-10.10/CPANInternal-159.1/Test-NoWarnings-1.04/t/
H A D05_no_end.t6 pass("just testing");
H A D06_fork.t7 pass("just testing");
/macosx-10.10/procmail-14/procmail/src/
H A Dauthenticate.h19 auth_checkpassword P((const auth_identity*const pass,const char*const pw,
21 auth_filledid P((const auth_identity*pass));
23 *auth_getsecret P((const auth_identity*const pass)),
24 *auth_mailboxname P((auth_identity*const pass)),
25 *auth_homedir P((const auth_identity*const pass)),
26 *auth_shell P((const auth_identity*const pass)),
27 *auth_username P((const auth_identity*const pass));
29 auth_whatuid P((const auth_identity*const pass)),
30 auth_whatgid P((const auth_identity*const pass));
33 auth_freeid P((auth_identity*pass)),
[all...]
H A Dauthenticate.c102 int auth_checkpassword(pass,pw,allowemptypw)const auth_identity*const pass;
105 rpw=pass->pw->pw_passwd; /* get the regular (encrypted) password */
108 if(spwd=getspnam(pass->pw->pw_name)) /* any shadow password? */
117 const char*auth_getsecret(pass)const auth_identity*const pass;
122 { auth_identity*pass; /* create a new auth_identity placeholder */ local
123 (pass=malloc(sizeof*pass))->pw=0;pass
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/pkcs12/
H A Dp12_p8d.c63 PKCS8_PRIV_KEY_INFO *PKCS8_decrypt(X509_SIG *p8, const char *pass, int passlen) argument
65 return PKCS12_item_decrypt_d2i(p8->algor, ASN1_ITEM_rptr(PKCS8_PRIV_KEY_INFO), pass,
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_vm_thread_alive_check1.rb4 Thread.pass
H A Dbm_vm_thread_pass_flood.rb2 Thread.new{loop{Thread.pass}}
H A Dbm_vm_thread_pass.rb1 # Plenty Thtread.pass
10 Thread.pass
/macosx-10.10/ruby-106/ruby/lib/webrick/httpauth/
H A Duserdb.rb31 def make_passwd(realm, user, pass)
32 @auth_type::make_passwd(realm, user, pass)
39 def set_passwd(realm, user, pass)
40 self[user] = pass
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/dl/
H A Ddl-10-create-delete.c60 int pass = 1; local
64 pass &= ok_status(CSSM_DL_DbCreate(dldb.DLHandle, DBNAME,
73 pass &= ok_status(CSSM_DL_DbClose(dldb), "CSSM_DL_DbClose");
74 pass &= ok_status(CSSM_DL_DbDelete(dldb.DLHandle, DBNAME,
77 pass &= is_unix(unlink(DBNAME), ENOENT, "unlink");
79 return pass;
85 int pass = 1; local
89 pass &= ok_status(CSSM_DL_DbCreate(dldb.DLHandle, DBNAME,
98 pass &= ok_status(CSSM_DL_DbDelete(dldb.DLHandle, DBNAME,
101 pass
110 int pass = 1; local
135 int pass = 1; local
160 int pass = 1; local
186 int pass = 1; local
213 int pass = 1; local
239 int pass = 1; local
[all...]
H A Ddl-11-create-relation.c127 int pass = 1; local
131 pass &= ok_status(CSSM_DL_DbCreate(dl, DBNAME, NULL /* DbLocation */,
139 pass &= is_status(CSSM_DL_DataInsert(dldb,
146 pass &= ok_status(CSSM_DL_CreateRelation(dldb,
154 pass &= ok_status(CSSM_DL_DataInsert(dldb,
160 pass &= is_status(CSSM_DL_DataInsert(dldb,
167 pass &= ok_status(CSSM_DL_FreeUniqueRecord(dldb, uniqueId),
170 pass &= ok_status(CSSM_DL_DbClose(dldb),
173 return pass;
179 int pass local
251 int pass = 1; local
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/bootstrap/
H A Dh_tp_basic_cpp.cpp32 ATF_TEST_CASE(pass); variable
34 ATF_TEST_CASE_HEAD(pass)
39 ATF_TEST_CASE_BODY(pass)
82 ATF_ADD_TEST_CASE(tcs, pass);
H A Dh_tp_basic_sh.sh30 atf_test_case pass
73 atf_add_test_case pass
H A Dh_tp_basic_c.c34 ATF_TC(pass); variable
35 ATF_TC_HEAD(pass, tc)
39 ATF_TC_BODY(pass, tc)
77 ATF_TP_ADD_TC(tp, pass);
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/t/testlib/
H A DPgBase.pm8 my $pass = $ENV{DBD_PG_PASSWD} || '';
10 __PACKAGE__->connection("dbi:Pg:dbname=$db", $user, $pass,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_checkpw/test/
H A Dperf-checkpw.c10 char *pass = "local"; local
15 retval = checkpw(uname, pass);
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Ddlltool.exp46 pass "dlltool (fastcall export)"
63 pass "dlltool -p (execution)"
69 pass "dlltool -p (symbol names)"
78 pass "dlltool -p (import name)"
H A Dlocalize-hidden-2.d7 #pass
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl_pkcs5.c13 * PKCS5.pbkdf2_hmac(pass, salt, iter, keylen, digest) => string
16 * * +pass+ - string
27 ossl_pkcs5_pbkdf2_hmac(VALUE self, VALUE pass, VALUE salt, VALUE iter, VALUE keylen, VALUE digest) argument
33 StringValue(pass);
39 if (PKCS5_PBKDF2_HMAC(RSTRING_PTR(pass), RSTRING_LENINT(pass),
55 * PKCS5.pbkdf2_hmac_sha1(pass, salt, iter, keylen) => string
58 * * +pass+ - string
68 ossl_pkcs5_pbkdf2_hmac_sha1(VALUE self, VALUE pass, VALUE salt, VALUE iter, VALUE keylen) argument
73 StringValue(pass);
[all...]
/macosx-10.10/CPANInternal-159.1/JSON-XS-3.01/t/
H A D05_dwiw_decode.t23 my $pass = 1;
33 $pass = 0;
37 $pass = 0;
41 $pass = 0;
45 $pass = 0;
49 $pass = 0;
53 ok($pass);
/macosx-10.10/sudo-73/src/auth/
H A Daix_auth.c59 char *pass, *message = NULL; local
64 pass = tgetpass(prompt, def_passwd_timeout * 60, tgetpass_flags);
65 if (pass == NULL)
69 result = authenticate(pw->pw_name, pass, &reenter, &message);
70 zero_bytes(pass, strlen(pass));
78 rval = pass ? AUTH_FAILURE : AUTH_INTR;
H A Dafs.c53 afs_verify(pw, pass, auth)
55 char *pass;
62 ka_StringToKey(pass, NULL, &afs_key);
78 pass, /* password */
H A Dfwtk.c89 char *pass; /* Password from the user */ local
105 pass = tgetpass(buf, def_passwd_timeout * 60, tgetpass_flags);
106 if (pass && *pass == '\0') {
107 pass = tgetpass("Response [echo on]: ",
111 pass = tgetpass(&resp[10], def_passwd_timeout * 60, tgetpass_flags);
113 pass = tgetpass(prompt, def_passwd_timeout * 60,
123 if (!pass) { /* ^C or error */
128 (void) snprintf(buf, sizeof(buf), "response '%s'", pass);
145 zero_bytes(pass, strle
[all...]
H A Dsecureware.c73 secureware_verify(pw, pass, auth)
75 char *pass;
83 if (strcmp(pw_epasswd, dispcrypt(pass, pw_epasswd, crypt_type)) == 0)
87 if (strcmp(pw_epasswd, bigcrypt(pass, pw_epasswd)) == 0)
90 if (strcmp(pw_epasswd, crypt(pass, pw_epasswd)) == 0)
95 if (strcmp(pw_epasswd, bigcrypt(pass, pw_epasswd)) == 0)
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DSpiller.h35 Spiller* createSpiller(MachineFunctionPass &pass,
41 Spiller *createInlineSpiller(MachineFunctionPass &pass,

Completed in 260 milliseconds

1234567891011>>