Home
last modified time | relevance | path

Searched refs:pl (Results 26 – 50 of 105) sorted by relevance

12345

/openssl/crypto/perlasm/
H A DREADME.md11 require "x86asm.pl";
24 There are two main 'packages'. `x86ms.pl`, which is the Microsoft assembler,
25 and `x86unix.pl` which is the unix (gas) version.
69 require "x86asm.pl";
108 There is also a cbc mode function generator in cbc.pl
/openssl/Configurations/
H A Dunix-Makefile.tmpl1199 ( cd $(SRCDIR); $(PERL) util/check-format.pl \
1203 ( cd $(SRCDIR); $(PERL) VMS/VMSify-conf.pl \
1237 ( cd $(SRCDIR); $(PERL) fuzz/mkfuzzoids.pl \
1295 crypto/aes/asm/*.pl crypto/aes/asm/*.S \
1296 crypto/ec/asm/*.pl \
1297 crypto/modes/asm/*.pl \
1298 crypto/sha/asm/*.pl \
1299 crypto/*cpuid.pl crypto/*cpuid.S \
1580 $target: $gen0 $deps \$(SRCDIR)/util/mkdef.pl
1596 if ($gen0 =~ /\.pl$/) {
[all …]
H A DREADME-design.md90 GENERATE[buildinf.h]=../util/mkbuildinf.pl "$(CC) $(CFLAGS)" "$(PLATFORM)"
92 DEPEND[../util/mkbuildinf.pl]=../util/Foo.pm
168 GENERATE[crypto/buildinf.h]=util/mkbuildinf.pl "$(CC) $(CFLAGS)" "$(PLATFORM)"
170 DEPEND[util/mkbuildinf.pl]=util/Foo.pm
275 "util/mkbuildinf.pl" =>
289 "util/mkbuildinf.pl",
314 "util/mkbuildinf.pl" =>
595 generator => [ "util/mkbuildinf.pl", "\"$(CC)",
/openssl/apps/
H A DCA.pl.in126 …CA.pl -newcert | -newreq | -newreq-nodes | -xsign | -sign | -signCA | -signcert | -crl | -newca [-…
127 CA.pl -pkcs12 [certname]
128 CA.pl -verify certfile ...
129 CA.pl -revoke certfile [reason]
/openssl/crypto/sm3/
H A Dbuild.info22 GENERATE[sm3-armv8.S]=asm/sm3-armv8.pl
25 GENERATE[sm3-riscv64-zvksh.S]=asm/sm3-riscv64-zvksh.pl
/openssl/
H A DNOTES-VALGRIND.md30 programs. The default wrapper (`util/wrap.pl`) initializes the environment
35 "$(/bin/pwd)/util/wrap.pl valgrind --error-exitcode=1 --leak-check=full -q"
65 $ make test EXE_SHELL="$(/bin/pwd)/util/wrap.pl valgrind --error-exitcode=1 \
71 $ make test VERBOSE=1 TESTS=test_test EXE_SHELL="$(/bin/pwd)/util/wrap.pl \
H A D.gitignore25 /apps/CA.pl
27 /apps/tsget.pl
141 /tools/c_rehash.pl
143 /util/wrap.pl
H A Dbuild.info103 GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
104 GENERATE[libssl.rc]=util/mkrc.pl libssl
133 GENERATE[builddata.pm]=util/mkinstallvars.pl \
/openssl/doc/man7/
H A Dopenssl-env.pod25 and by the B<CA.pl> script (see L<CA.pl(1)/NOTES>
36 commands invoked by the B<CA.pl> script.
37 See L<CA.pl(1)>.
/openssl/crypto/ripemd/
H A Dbuild.info28 GENERATE[rmd-586.S]=asm/rmd-586.pl
29 DEPEND[rmd-586.S]=../perlasm/x86asm.pl
/openssl/doc/man3/
H A DRSA_padding_add_PKCS1_type_1.pod34 const unsigned char *p, int pl);
38 const unsigned char *p, int pl);
42 const unsigned char *p, int pl,
47 const unsigned char *p, int pl,
109 of length B<pl>. B<p> may be B<NULL> if B<pl> is 0.
/openssl/dev/release-aux/
H A DREADME.md27 - fixup-*-release.pl and fixup-*-postrelease.pl
/openssl/crypto/bio/
H A Dbio_addr.c508 const char *p = NULL; size_t pl = 0; in BIO_parse_hostserv() local
522 pl = strlen(p); in BIO_parse_hostserv()
545 pl = strlen(p); in BIO_parse_hostserv()
551 pl = strlen(p); in BIO_parse_hostserv()
569 if (pl == 0 in BIO_parse_hostserv()
570 || (pl == 1 && p[0] == '*')) { in BIO_parse_hostserv()
573 *service = OPENSSL_strndup(p, pl); in BIO_parse_hostserv()
/openssl/tools/
H A Dbuild.info2 $config{target} =~ /^(VC|vms)-/ ? "c_rehash.pl" : "c_rehash";
/openssl/VMS/
H A Dopenssl_utils.com.in11 $ C_REHASH :== 'PERL' OSSL$EXE:c_rehash.pl
/openssl/test/
H A Dproperty_test.c663 OSSL_PROPERTY_LIST *pl = NULL; in test_property_list_to_string() local
669 && !TEST_ptr(pl = ossl_parse_query(NULL, to_string_tests[i].in, 1))) in test_property_list_to_string()
671 bufsize = ossl_property_list_to_string(NULL, pl, NULL, 0); in test_property_list_to_string()
676 || !TEST_size_t_eq(ossl_property_list_to_string(NULL, pl, buf, in test_property_list_to_string()
686 ossl_property_free(pl); in test_property_list_to_string()
/openssl/engines/
H A Dbuild.info101 GENERATE[e_padlock-x86.S]=asm/e_padlock-x86.pl
102 GENERATE[e_padlock-x86_64.s]=asm/e_padlock-x86_64.pl
/openssl/test/ssl-tests/
H A D24-padding.cnf1 # Generated with generate_ssl_tests.pl
H A D15-certstatus.cnf1 # Generated with generate_ssl_tests.pl
H A D16-dtls-certstatus.cnf1 # Generated with generate_ssl_tests.pl
/openssl/crypto/property/
H A Dproperty_local.h55 OSSL_PROPERTY_LIST **pl);
/openssl/crypto/evp/
H A Devp_fetch.c487 OSSL_PROPERTY_LIST *pl = NULL; in evp_set_default_properties_int() local
489 if (propq != NULL && (pl = ossl_parse_query(libctx, propq, 1)) == NULL) { in evp_set_default_properties_int()
493 if (!evp_set_parsed_default_properties(libctx, pl, loadconfig, mirrored)) { in evp_set_default_properties_int()
494 ossl_property_free(pl); in evp_set_default_properties_int()
/openssl/demos/http3/
H A Dbuild.info10 GENERATE[libnghttp3.so libnghttp3.a libnghttp3.dylib libnghttp3.lib libnghttp3.dll]=gen_nghttp3.pl
/openssl/exporters/
H A Dbuild.info21 GENERATE[../installdata.pm]=../util/mkinstallvars.pl \
/openssl/providers/
H A Dbuild.info119 GENERATE[fipsmodule.cnf]=../util/mk-fipsmodule-cnf.pl \
125 GENERATE[fips.rc]=../util/mkrc.pl fips
159 GENERATE[legacy.rc]=../util/mkrc.pl legacy

Completed in 45 milliseconds

12345