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

1234567891011>>

/freebsd-12-stable/contrib/blacklist/etc/
H A Dnpf.conf10 pass final all
14 pass final all
/freebsd-12-stable/usr.sbin/pw/tests/
H A Dcrypt.c35 char *salt, *pass, *hash; local
40 pass = argv[2];
42 hash = crypt(pass, salt);
/freebsd-12-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-12-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-12-stable/crypto/openssl/crypto/pkcs12/
H A Dp12_p8d.c14 PKCS8_PRIV_KEY_INFO *PKCS8_decrypt(const X509_SIG *p8, const char *pass, argument
21 ASN1_ITEM_rptr(PKCS8_PRIV_KEY_INFO), pass,
H A Dp12_kiss.c16 static int parse_pk12(PKCS12 *p12, const char *pass, int passlen,
19 static int parse_bags(const STACK_OF(PKCS12_SAFEBAG) *bags, const char *pass,
22 static int parse_bag(PKCS12_SAFEBAG *bag, const char *pass, int passlen,
32 int PKCS12_parse(PKCS12 *p12, const char *pass, EVP_PKEY **pkey, X509 **cert, argument
60 if (!pass || !*pass) {
62 pass = NULL;
64 pass = "";
69 } else if (!PKCS12_verify_mac(p12, pass, -1)) {
82 if (!parse_pk12(p12, pass,
131 parse_pk12(PKCS12 *p12, const char *pass, int passlen, EVP_PKEY **pkey, STACK_OF(X509) *ocerts) argument
177 parse_bag(PKCS12_SAFEBAG *bag, const char *pass, int passlen, EVP_PKEY **pkey, STACK_OF(X509) *ocerts) argument
[all...]
H A Dp12_crpt.c20 int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, argument
28 int (*pkcs12_key_gen)(const char *pass, int passlen,
53 if (!(*pkcs12_key_gen)(pass, passlen, salt, saltlen, PKCS12_KEY_ID,
59 if (!(*pkcs12_key_gen)(pass, passlen, salt, saltlen, PKCS12_IV_ID,
H A Dp12_p8e.c16 const char *pass, int passlen,
35 p8 = PKCS8_set0_pbe(pass, passlen, p8inf, pbe);
44 X509_SIG *PKCS8_set0_pbe(const char *pass, int passlen, argument
52 pass, passlen, p8inf, 1);
15 PKCS8_encrypt(int pbe_nid, const EVP_CIPHER *cipher, const char *pass, int passlen, unsigned char *salt, int saltlen, int iter, PKCS8_PRIV_KEY_INFO *p8inf) argument
/freebsd-12-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-12-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-12-stable/contrib/bearssl/src/int/
H A Di15_decmod.c32 * Two-pass algorithm: in the first pass, we determine whether the
33 * value fits; in the second pass, we do the actual write.
35 * During the first pass, 'r' contains the comparison result so
45 * During the second pass, 'r' is either 0xFFFFFFFF (value fits)
56 int pass; local
67 for (pass = 0; pass < 2; pass ++) {
92 if (pass) {
[all...]
H A Di31_decmod.c32 * Two-pass algorithm: in the first pass, we determine whether the
33 * value fits; in the second pass, we do the actual write.
35 * During the first pass, 'r' contains the comparison result so
45 * During the second pass, 'r' is either 0xFFFFFFFF (value fits)
56 int pass; local
67 for (pass = 0; pass < 2; pass ++) {
92 if (pass) {
[all...]
/freebsd-12-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-12-stable/crypto/openssl/include/openssl/
H A Dpkcs12.h103 const char *pass,
111 PKCS8_PRIV_KEY_INFO *PKCS8_decrypt(const X509_SIG *p8, const char *pass,
114 const char *pass, int passlen);
116 const char *pass, int passlen, unsigned char *salt,
118 X509_SIG *PKCS8_set0_pbe(const char *pass, int passlen,
122 PKCS7 *PKCS12_pack_p7encdata(int pbe_nid, const char *pass, int passlen,
125 STACK_OF(PKCS12_SAFEBAG) *PKCS12_unpack_p7encdata(PKCS7 *p7, const char *pass,
148 const char *pass, int passlen,
153 const char *pass, int passlen,
157 const char *pass, in
205 int key_nid, const char *pass); variable
207 int safe_nid, int iter, const char *pass); variable
[all...]
/freebsd-12-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-12-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-12-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-12-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-12-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-12-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-12-stable/sbin/natd/samples/
H A Dnatd.test11 ipfw add pass ip from any to any
/freebsd-12-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-12-stable/crypto/openssh/
H A Dauth-sia.c53 sys_auth_passwd(struct ssh *ssh, const char *pass) argument
62 if (!authctxt->user || pass == NULL || pass[0] == '\0')
69 if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) {

Completed in 1493 milliseconds

1234567891011>>