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

1234567891011>>

/freebsd-11-stable/crypto/openssl/crypto/pkcs12/
H A Dp12_p8d.c64 PKCS8_PRIV_KEY_INFO *PKCS8_decrypt(X509_SIG *p8, const char *pass, argument
68 ASN1_ITEM_rptr(PKCS8_PRIV_KEY_INFO), pass,
H A Dp12_kiss.c66 static int parse_pk12(PKCS12 *p12, const char *pass, int passlen,
69 static int parse_bags(STACK_OF(PKCS12_SAFEBAG) *bags, const char *pass,
72 static int parse_bag(PKCS12_SAFEBAG *bag, const char *pass, int passlen,
82 int PKCS12_parse(PKCS12 *p12, const char *pass, EVP_PKEY **pkey, X509 **cert, argument
110 if (!pass || !*pass) {
112 pass = NULL;
114 pass = "";
119 } else if (!PKCS12_verify_mac(p12, pass, -1)) {
132 if (!parse_pk12(p12, pass,
185 parse_pk12(PKCS12 *p12, const char *pass, int passlen, EVP_PKEY **pkey, STACK_OF(X509) *ocerts) argument
231 parse_bag(PKCS12_SAFEBAG *bag, const char *pass, int passlen, EVP_PKEY **pkey, STACK_OF(X509) *ocerts) argument
[all...]
/freebsd-11-stable/contrib/blacklist/etc/
H A Dnpf.conf10 pass final all
14 pass final all
/freebsd-11-stable/usr.sbin/pw/tests/
H A Dcrypt.c35 char *salt, *pass, *hash; local
40 pass = argv[2];
42 hash = crypt(pass, salt);
/freebsd-11-stable/contrib/dialog/
H A Dargv.c36 int pass; local
40 for (pass = 0; pass < 2; ++pass) {
52 if (pass)
59 if (pass) {
67 if (pass) {
72 if (pass)
77 if (pass) {
83 if (!pass) {
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DPassManager.h26 /// In the future this should handle timing pass runs, running parallel passes,
27 /// and validate/satisfy pass dependencies.
30 void add(std::unique_ptr<Pass> pass) { argument
31 _passes.push_back(std::move(pass));
35 for (std::unique_ptr<Pass> &pass : _passes)
36 if (llvm::Error EC = pass->perform(file))
/freebsd-11-stable/share/examples/tests/tests/tap/
H A Dprintf_test.c72 pass(void) function
100 pass();
104 pass();
119 pass();
124 pass();
141 pass();
149 pass();
156 pass();
/freebsd-11-stable/contrib/gcc/
H A Dpasses.c83 #include "tree-pass.h"
300 /* The root of the compilation pass tree, once constructed. */
303 /* Iterate over the pass tree allocating dump file numbers. We want
304 to do this depth first, and independent of whether the pass is
308 register_one_dump_file (struct tree_opt_pass *pass, bool ipa, int properties)
317 if (pass->static_pass_number != -1)
318 sprintf (num, "%d", ((int) pass->static_pass_number < 0
319 ? 1 : pass->static_pass_number));
321 dot_name = concat (".", pass->name, num, NULL);
329 flag_name = concat (prefix, pass
307 register_one_dump_file(struct tree_opt_pass *pass, bool ipa, int properties) argument
337 register_dump_files_1(struct tree_opt_pass *pass, bool ipa, int properties) argument
371 register_dump_files(struct tree_opt_pass *pass, bool ipa, int properties) argument
382 next_pass_1(struct tree_opt_pass **list, struct tree_opt_pass *pass) argument
826 execute_one_pass(struct tree_opt_pass *pass) argument
928 execute_pass_list(struct tree_opt_pass *pass) argument
942 execute_ipa_pass_list(struct tree_opt_pass *pass) argument
[all...]
/freebsd-11-stable/tests/sys/mac/bsdextended/
H A Dmatches_test.sh14 pass() function
81 pass $desc
91 pass $desc
104 pass $desc
111 pass $desc
124 pass $desc
129 pass $desc
143 pass $desc
148 pass $desc
167 pass
[all...]
/freebsd-11-stable/contrib/apr-util/test/
H A Dtestpass.c124 const char *pass = "hellojed"; local
128 apr_sha1_base64(pass, strlen(pass), hash);
131 apr_password_validate(pass, hash));
138 const char *pass = "hellojed", *salt = "sardine"; local
142 apr_md5_encode(pass, salt, hash, sizeof hash);
145 apr_password_validate(pass, hash));
179 const char *pass = "hellojed"; local
187 apr_bcrypt_encode(pass, 5, salt, sizeof(salt), hash,
191 apr_password_validate(pass, has
[all...]
/freebsd-11-stable/contrib/ncurses/include/
H A DMKkey_defs.sh45 trap 'rm -f $data pass[1234]_$$' 0 1 2 5 15
80 for pass in 1 2 3 4
83 output=pass${pass}_$$
113 pass='$pass';
130 if (pass == 1 || pass == 2)
134 if (pass == 3)
140 if (pass
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransARCAssign.cpp39 ARCAssignChecker(MigrationPass &pass) : Pass(pass) { } argument
74 void trans::makeAssignARCSafe(MigrationPass &pass) { argument
75 ARCAssignChecker assignCheck(pass);
76 assignCheck.TraverseDecl(pass.Ctx.getTranslationUnitDecl());
H A DTransUnusedInitDelegate.cpp40 UnusedInitRewriter(MigrationPass &pass) argument
41 : Body(nullptr), Pass(pass) { }
74 void trans::rewriteUnusedInitDelegate(MigrationPass &pass) { argument
75 BodyTransform<UnusedInitRewriter> trans(pass);
76 trans.TraverseDecl(pass.Ctx.getTranslationUnitDecl());
H A DTransEmptyStatementsAndDealloc.cpp151 EmptyStatementsRemover(MigrationPass &pass) : Pass(pass) { } argument
193 static void cleanupDeallocOrFinalize(MigrationPass &pass) { argument
194 ASTContext &Ctx = pass.Ctx;
195 TransformActions &TA = pass.TA;
198 Ctx.Selectors.getNullarySelector(&pass.Ctx.Idents.get("finalize"));
218 if (isBodyEmpty(DeallocM->getCompoundBody(), Ctx, pass.ARCMTMacroLocs)) {
229 if (isBodyEmpty(FinalizeM->getCompoundBody(), Ctx, pass.ARCMTMacroLocs)) {
240 void trans::removeEmptyStatementsAndDeallocFinalize(MigrationPass &pass) { argument
241 EmptyStatementsRemover(pass)
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Docteon-model.c128 * - X.X = Chip pass number
150 char pass[4]; local
201 /* Assume pass number is encoded using <5:3><2:0>. Exceptions will be
203 sprintf(pass, "%d.%d", (int)((chip_id>>3)&7)+1, (int)chip_id&7);
244 /* This series of chips didn't follow the standard pass numbering */
247 case 0: strcpy(pass, "1.X"); break;
248 case 1: strcpy(pass, "2.X"); break;
249 case 3: strcpy(pass, "3.X"); break;
250 default:strcpy(pass, "X.X"); break;
258 /* This series of chips didn't follow the standard pass numberin
[all...]
/freebsd-11-stable/etc/
H A Drc.firewall85 ${fwcmd} add 100 pass all from any to any via lo0
103 ${fwcmd} add pass ipv6-icmp from :: to ff02::/16
105 ${fwcmd} add pass ipv6-icmp from fe80::/10 to fe80::/10
106 ${fwcmd} add pass ipv6-icmp from fe80::/10 to ff02::/16
109 ${fwcmd} add pass ipv6-icmp from any to any icmp6types 1
112 ${fwcmd} add pass ipv6-icmp from any to any icmp6types 2,135,136
192 # ${fwcmd} add 65000 pass all from any to any
199 ${fwcmd} add 65000 pass all from any to any
217 ${fwcmd} add pass all from ${net} to 255.255.255.255
220 ${fwcmd} add pass al
[all...]
/freebsd-11-stable/crypto/heimdal/kadmin/
H A Drandom_password.c65 char *pass;
66 generate_password(&pass, 3,
70 strlcpy(pw, pass, len);
71 memset(pass, 0, strlen(pass));
72 free(pass);
/freebsd-11-stable/sbin/natd/samples/
H A Dnatd.test11 ipfw add pass ip from any to any
/freebsd-11-stable/crypto/openssh/regress/
H A Dsftp-batch.sh10 cat << EOF > ${BATCH}.pass.1
17 cat << EOF > ${BATCH}.pass.2
38 ${SFTP} -b ${BATCH}.pass.1 -D ${SFTPSERVER} >/dev/null 2>&1 \
46 ${SFTP} -b ${BATCH}.pass.2 -D ${SFTPSERVER} >/dev/null 2>&1 \
/freebsd-11-stable/crypto/openssh/
H A Dauth-sia.c53 sys_auth_passwd(Authctxt *authctxt, const char *pass) argument
61 if (!authctxt->user || pass == NULL || pass[0] == '\0')
68 if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) {
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dtest_nist_pkcs12.in39 pass="--pass=PASS:password"
66 if ${hxtool} validate $pass PKCS12:$a > /dev/null; then
/freebsd-11-stable/contrib/ipfilter/rules/
H A DBASIC_1.FW41 pass in quick on lo0 all
42 pass out quick on lo0 all
60 pass in quick proto udp from any to any port = 53 keep state group 202
65 #pass in quick proto udp from any to w.x.y.z/32 port = 53 keep state group 202
66 #pass out quick on ppp0 proto udp from a.b.c.d/32 to any port = 53 keep state
70 pass in quick proto tcp from any to any port = ftp keep state group 201
71 pass in quick proto tcp from any to any port = ftp-data keep state group 201
72 pass in quick proto tcp from any port = ftp-data to any port > 1023 keep state group 101
76 pass in quick proto udp from any to any port = ntp keep state group 202
80 pass i
[all...]
/freebsd-11-stable/tools/tools/tinybsd/conf/firewall/etc/
H A Drc.firewall84 ${fwcmd} add 100 pass all from any to any via lo0
136 # ${fwcmd} add 65000 pass all from any to any
144 ${fwcmd} add 65000 pass all from any to any
161 ${fwcmd} add pass all from ${ip} to ${net}:${mask}
162 ${fwcmd} add pass all from ${net}:${mask} to ${ip}
165 ${fwcmd} add pass tcp from any to any established
167 # Allow IP fragments to pass through
168 ${fwcmd} add pass all from any to any frag
171 ${fwcmd} add pass tcp from any to ${ip} 25 setup
174 ${fwcmd} add pass tc
[all...]
/freebsd-11-stable/tools/tools/tinybsd/conf/wireless/etc/
H A Drc.firewall84 ${fwcmd} add 100 pass all from any to any via lo0
136 # ${fwcmd} add 65000 pass all from any to any
144 ${fwcmd} add 65000 pass all from any to any
161 ${fwcmd} add pass all from ${ip} to ${net}:${mask}
162 ${fwcmd} add pass all from ${net}:${mask} to ${ip}
165 ${fwcmd} add pass tcp from any to any established
167 # Allow IP fragments to pass through
168 ${fwcmd} add pass all from any to any frag
171 ${fwcmd} add pass tcp from any to ${ip} 25 setup
174 ${fwcmd} add pass tc
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dwcscoll.c47 int direc, pass; local
65 * safely. You absolutely have to run this pass by pass,
69 * during the primary pass anyway.
71 * Note that we do one final extra pass at the end to pick
74 for (pass = 0; pass <= table->info->directive_count; pass++) {
81 /* special pass for UNDEFINED */
82 if (pass
[all...]

Completed in 606 milliseconds

1234567891011>>