/openssl/test/recipes/ |
H A D | 15-test_gendhparam.t | 143 my @lines; 145 @lines = run(app(['openssl', 'genpkey', '-genparam', 150 @lines = run(app(['openssl', 'genpkey', '-genparam', 154 ok(compareline(\@lines, \@expected), $msg); 160 my @lines = @$ref_lines; 163 if (@lines == 0 and $expected[0] eq 'ERROR') { 167 foreach (@lines) { 172 if ( !grep { index($_, $ex) >= 0 } @lines) {
|
H A D | 25-test_crl.t | 56 my @lines = run(app($cmdarray), capture => 1); 58 return 1 if $lines[0] =~ m|^\Q${str}\E\R$|; 59 note "Got ", $lines[0]; 66 my @lines = run(app($cmdarray, stdin => $infile), capture => 1); 68 return 1 if $lines[0] =~ m|^\Q${str}\E\R$|; 69 note "Got ", $lines[0];
|
H A D | 20-test_mac.t | 156 my @lines = run(app($cmdarray), capture => 1); 160 if ($lines[0] =~ m|^\Q${expect}\E\R$|) { 163 print "Got: $lines[0]"; 169 if (defined($lines[0])) { 170 $lines[0] =~ s/\s+$//; 171 if ($lines[0] eq $err) { 174 print "Got: $lines[0]";
|
H A D | 20-test_passwd.t | 125 my @lines = run(app($cmdarray), capture => 1); 127 return $lines[0] =~ m|$regexp|; 132 my @lines = run(app($cmdarray), capture => 1); 134 return $lines[0] =~ m|^\Q${str}\E\R$|;
|
H A D | 20-test_kdf.t | 100 my @lines = run(app($cmdarray), capture => 1); 103 if ($lines[0] =~ m|^\Q${expect}\E\R$|) { 106 print "Got: $lines[0]";
|
H A D | 20-test_rand_config.t | 93 my @lines = run(app(["openssl", "list", "--random-instances"]), 97 if ( !grep( /$_/, @lines ) ) {
|
H A D | tconversion.pl | 162 chomp(my @lines = <DATA>); 164 return scalar(uniq @lines);
|
/openssl/Configurations/ |
H A D | shared-info.pl | 15 my @lines = 17 return grep /^GNU ld/, @lines; 20 my @lines = 22 return grep /gcc/, @lines;
|
H A D | INTERNALS.Configure | 30 # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF) 33 Ground rule is that non-condition lines are skipped over if the 34 stack top is > 0. Condition lines (IF, ELSIF, ELSE and ENDIF
|
H A D | README.md | 437 build file template to define exactly how those command lines should 452 NOTE: GENERATE lines are limited to one command only per GENERATE. 509 They are all expected to return a string with the lines they produce. 511 generatesrc - function that produces build file lines to generate 540 src2obj - function that produces build file lines to build an 562 obj2lib - function that produces build file lines to build a 583 obj2shlib - function that produces build file lines to build a 604 obj2dso - function that produces build file lines to build a 618 obj2bin - function that produces build file lines to build an 634 in2script - function that produces build file lines to build a
|
H A D | README-design.md | 421 generatesrc - function that produces build file lines to generate 449 src2obj - function that produces build file lines to build an 471 obj2lib - function that produces build file lines to build a 492 obj2shlib - function that produces build file lines to build a 513 obj2dso - function that produces build file lines to build a 527 obj2bin - function that produces build file lines to build an 543 in2script - function that produces build file lines to build a
|
/openssl/util/perl/OpenSSL/ |
H A D | ParseC.pm | 831 my @lines = map { ( undef, $_ ) } split m|\R|, $line; 834 pop @lines; 835 pop @lines; # Don't forget the undef 837 while (@lines) { 838 if (!defined($lines[0])) { 839 shift @lines; 849 $_ .= shift @lines; 882 @lines = ( @r, @lines ); 905 @lines = ( @r, @lines ); 947 @lines = ( @r, @lines ); [all …]
|
H A D | Test.pm | 854 my %lines = 859 @versions = ( $lines{'Build version'}, $lines{'Library version'} );
|
/openssl/crypto/ts/ |
H A D | ts_rsp_print.c | 73 int i, lines = 0; in TS_STATUS_INFO_print_bio() local 94 lines = ts_status_map_print(bio, failure_map, a->failure_info); in TS_STATUS_INFO_print_bio() 95 if (lines == 0) in TS_STATUS_INFO_print_bio() 105 int lines = 0; in ts_status_map_print() local 109 if (++lines > 1) in ts_status_map_print() 115 return lines; in ts_status_map_print()
|
/openssl/util/ |
H A D | mkerr.pl | 570 my $lines; 571 $lines = " {ERR_PACK($pack_lib, 0, $i), \"$rn\"},"; 572 $lines = " {ERR_PACK($pack_lib, 0, $i),\n \"$rn\"}," 573 if length($lines) > 80; 574 print OUT "$lines\n";
|
/openssl/.github/ISSUE_TEMPLATE/ |
H A D | feature_request.md | 10 please take the time to read the following lines before posting it. 18 Please remember to put ``` lines before and after any commands plus
|
H A D | bug_report.md | 10 please take the time to read the following lines before posting it. 37 Please remember to put ``` lines before and after any commands plus
|
/openssl/providers/common/der/ |
H A D | oids_to_c.pm | 107 my $lines = $opts{filter}->($_, encode_oid($_->[0])); 108 $text .= $lines;
|
/openssl/doc/man3/ |
H A D | BIO_f_base64.pod | 24 For writing, by default output is divided to lines of length 64 30 Subsequent input lines can be of any length (i.e., newlines may appear anywhere 34 lines that contain non-base64 content (whitespace is tolerated and ignored) are 35 skipped, as are lines longer than 1024 bytes.
|
H A D | BIO_f_prefix.pod | 30 BIO_set_prefix() sets the prefix to be used for future lines of 35 BIO_set_indent() sets the indentation to be used for future lines of
|
H A D | BIO_f_buffer.pod | 36 BIO_get_buffer_num_lines() returns the number of lines currently buffered. 77 BIO_get_buffer_num_lines() returns the number of lines buffered (may be 0) or
|
H A D | OSSL_HTTP_REQ_CTX.pod | 74 which collects the HTTP request header lines. 92 context I<rctx>. It can be called more than once to add multiple header lines. 144 The header lines are added to the internal memory B<BIO> for the request header. 170 Before the HTTP request is sent, this could be used to adapt its header lines. 226 Adding extra header lines with OSSL_HTTP_REQ_CTX_add1_header().
|
H A D | ECPKParameters_print.pod | 29 or B<fp>. The output lines are indented by B<off> spaces.
|
/openssl/test/ |
H A D | dane-cross.in | 8 # Blank and comment lines ignored. 14 # It is followed by <TLSA-count> lines of the form:
|
/openssl/demos/certs/apps/ |
H A D | apps.cnf | 5 # This definition stops the following lines choking if HOME or CN
|