Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 214) sorted by relevance

123456789

/openssl/external/perl/Text-Template-1.56/t/
H A Dbasic.t56 is $text, $resultX;
60 is $text, $resultY;
64 is $text, $resultX;
74 is $text, $resultX;
78 is $text, $resultY;
95 is $text, $resultX;
99 is $text, $resultY;
107 is $text, 'B}C{D';
118 is $text, "A\tB";
144 ok(!defined $text && !defined $result || $text eq $result)
[all …]
H A Dsafe2.t33 my $text = $t->fill_in();
34 is $text, 'package is main';
37 $text = $t->fill_in(PACKAGE => 'Q');
38 is $text, 'package is Q';
42 $text = $t->fill_in(SAFE => $c);
43 is $text, 'package is safe root';
50 is $text, 'package is Q';
60 is $text, 'hash is good5';
67 is $text, 'hash is good6';
73 is $text, 'hash is good7';
[all …]
H A Dhash.t25 my $text = $template->fill_in(HASH => $vars);
26 is $text, $result2;
33 $text = $template->fill_in(HASH => $vars);
34 is $text, $result4;
38 $text = $template->fill_in(HASH => $vars, PACKAGE => 'Q');
39 is $text, $result5;
46 $text = $template->fill_in(HASH => $vars);
47 is $text, $result7;
64 is $text, $result8;
77 is $text, $result8;
[all …]
H A Ddelimiters.t23 my $text = $template1->fill_in();
24 is $text, $result;
28 $text = $template1->fill_in(DELIMITERS => [ '<<', '>>' ]);
29 is $text, $result;
40 $text = $template1->fill_in();
41 is $text, $result;
45 $text = $template1->fill_in(DELIMITERS => [ '[', ']' ]);
46 is $text, $result;
78 my $text = $tmpl->fill_in;
80 my $ok = (!defined $text && !defined $result || $text eq $result);
[all …]
H A Dout.t35 my $text = $template->fill_in();
39 is $text, $textOUT;
H A Dofh.t19 my $text = $template->fill_in(OUTPUT => $of);
22 is $text, '1';
/openssl/providers/implementations/ciphers/
H A Dcipher_chacha20_poly1305_hw.c64 ctx->len.text = 0; in chacha20_poly1305_initkey()
83 ctx->len.text = 0; in chacha20_poly1305_initiv()
143 ctx->len.text = plen; in chacha20_poly1305_tls_cipher()
168 ctx->len.text = plen; in chacha20_poly1305_tls_cipher()
202 ctx->len.text = plen; in chacha20_poly1305_tls_cipher()
230 ctr[8] = (unsigned char)(ctx->len.text); in chacha20_poly1305_tls_cipher()
231 ctr[9] = (unsigned char)(ctx->len.text>>8); in chacha20_poly1305_tls_cipher()
232 ctr[10] = (unsigned char)(ctx->len.text>>16); in chacha20_poly1305_tls_cipher()
294 ctx->len.aad = ctx->len.text = 0; in chacha20_poly1305_aead_cipher()
327 ctx->len.text += plen; in chacha20_poly1305_aead_cipher()
[all …]
/openssl/test/
H A Dmdc2test.c51 static char text[] = "Now is the time for all "; in test_mdc2() local
52 size_t tlen = strlen(text), i = 0; in test_mdc2()
65 ebcdic2ascii(text, text, tlen); in test_mdc2()
71 || !TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen)) in test_mdc2()
78 || !TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen)) in test_mdc2()
H A Dcmp_status_test.c18 const char *text; /* Not freed by tear_down */ member
49 fixture->text))) in execute_PKISI_test()
60 || !TEST_mem_eq(fixture->text, strlen(fixture->text), in execute_PKISI_test()
84 fixture->text = "this is an additional text describing the failure"; in test_PKISI()
H A Dcmp_hdr_test.c246 ASN1_UTF8STRING *text = ASN1_UTF8STRING_new(); in execute_HDR_push0_freeText_test() local
248 if (!TEST_ptr(text)) in execute_HDR_push0_freeText_test()
251 if (!ASN1_STRING_set(text, "A free text", -1)) in execute_HDR_push0_freeText_test()
254 if (!TEST_int_eq(ossl_cmp_hdr_push0_freeText(fixture->hdr, text), 1)) in execute_HDR_push0_freeText_test()
263 ASN1_UTF8STRING_free(text); in execute_HDR_push0_freeText_test()
277 ASN1_UTF8STRING *text = ASN1_UTF8STRING_new(); in execute_HDR_push1_freeText_test() local
281 if (!TEST_ptr(text)) in execute_HDR_push1_freeText_test()
284 if (!ASN1_STRING_set(text, "A free text", -1)) in execute_HDR_push1_freeText_test()
287 if (!TEST_int_eq(ossl_cmp_hdr_push1_freeText(fixture->hdr, text), 1)) in execute_HDR_push1_freeText_test()
291 if (!TEST_int_eq(ASN1_STRING_cmp(text, pushed_text), 0)) in execute_HDR_push1_freeText_test()
[all …]
H A Dideatest.c35 static const unsigned char text[] = "Hello to all people out there"; variable
80 const size_t text_len = sizeof(text); in test_idea_cbc()
85 IDEA_cbc_encrypt(text, out, text_len, &key, iv, 1); in test_idea_cbc()
89 return TEST_mem_eq(text, text_len, out, text_len); in test_idea_cbc()
/openssl/crypto/evp/
H A De_chacha20_poly1305.c158 struct { uint64_t aad, text; } len; member
177 actx->len.text = 0; in chacha20_poly1305_init_key()
239 actx->len.text = plen; in chacha20_poly1305_tls_cipher()
264 actx->len.text = plen; in chacha20_poly1305_tls_cipher()
298 actx->len.text = plen; in chacha20_poly1305_tls_cipher()
329 ctr[8] = (unsigned char)(actx->len.text); in chacha20_poly1305_tls_cipher()
381 actx->len.aad = actx->len.text = 0; in chacha20_poly1305_cipher()
416 actx->len.text += plen; in chacha20_poly1305_cipher()
422 actx->len.text += plen; in chacha20_poly1305_cipher()
455 temp[8] = (unsigned char)(actx->len.text); in chacha20_poly1305_cipher()
[all …]
/openssl/providers/common/der/
H A Doids_to_c.pm75 my $text = join('',
84 while ($text =~ m/${OID_def_re}/sg) {
104 my $text = '';
108 $text .= $lines;
110 return $text;
/openssl/apps/
H A Dpkey.c79 int pubin = 0, pubout = 0, text_pub = 0, text = 0, noout = 0, ret = 1; in pkey_main() local
132 text = 1; in pkey_main()
178 if (text && text_pub) in pkey_main()
186 if (!text_pub && pubout && text) { in pkey_main()
187 text = 0; in pkey_main()
191 private = (!noout && !pubout) || (text && !text_pub); in pkey_main()
288 if (text || text_pub) { in pkey_main()
310 } else if (text) { in pkey_main()
H A Dstoreutl.c21 int text, int noout, int recursive, int indent, const char *outfile,
74 int ret = 1, noout = 0, text = 0, recursive = 0; in storeutl_main() local
114 text = 1; in storeutl_main()
317 text, noout, recursive, 0, outfile, prog, libctx); in storeutl_main()
348 int text, int noout, int recursive, int indent, const char *outfile, in process() argument
445 text, noout, recursive, indent + 2, outfile, prog, in process()
450 if (text) in process()
458 if (text) in process()
465 if (text) in process()
473 if (text) in process()
[all …]
H A Dsess_id.c55 int cert = 0, noout = 0, text = 0, ret = 1, i, num = 0; in sess_id_main() local
86 text = ++num; in sess_id_main()
123 if (!noout || text) { in sess_id_main()
129 if (text) { in sess_id_main()
/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm368 text => $fi_text,
408 text => $fi_text,
414 text => $fi_res,
425 text => $fi_res,
445 print { $arg{handle} } $arg{text};
448 ${ $arg{out} } .= $arg{text};
455 my ($pack, $text) = splice @_, 0, 2;
457 my $templ = $pack->new(TYPE => 'STRING', SOURCE => $text, @_)
483 my $text = $templ->fill_in(@_);
485 $text;
[all …]
/openssl/crypto/cmp/
H A Dcmp_status.c175 ASN1_UTF8STRING *text; in snprint_PKIStatusInfo_parts() local
229 text = sk_ASN1_UTF8STRING_value(status_strings, i); in snprint_PKIStatusInfo_parts()
231 ASN1_STRING_length(text), in snprint_PKIStatusInfo_parts()
232 ASN1_STRING_get0_data(text), in snprint_PKIStatusInfo_parts()
279 const char *text) in OSSL_CMP_STATUSINFO_new() argument
290 if (text != NULL) { in OSSL_CMP_STATUSINFO_new()
292 || !ASN1_STRING_set(utf8_text, text, -1)) in OSSL_CMP_STATUSINFO_new()
H A Dcmp_hdr.c144 int ossl_cmp_hdr_push0_freeText(OSSL_CMP_PKIHEADER *hdr, ASN1_UTF8STRING *text) in ossl_cmp_hdr_push0_freeText() argument
146 if (!ossl_assert(hdr != NULL && text != NULL)) in ossl_cmp_hdr_push0_freeText()
153 return sk_ASN1_UTF8STRING_push(hdr->freeText, text); in ossl_cmp_hdr_push0_freeText()
156 int ossl_cmp_hdr_push1_freeText(OSSL_CMP_PKIHEADER *hdr, ASN1_UTF8STRING *text) in ossl_cmp_hdr_push1_freeText() argument
158 if (!ossl_assert(hdr != NULL && text != NULL)) in ossl_cmp_hdr_push1_freeText()
166 ossl_cmp_sk_ASN1_UTF8STRING_push_str(hdr->freeText, (char *)text->data, in ossl_cmp_hdr_push1_freeText()
167 text->length); in ossl_cmp_hdr_push1_freeText()
/openssl/external/perl/Text-Template-1.56/
H A DMETA.yml2 abstract: 'Expand template text with embedded Perl'
41 bugtracker: https://github.com/mschout/perl-text-template/issues
42 homepage: https://github.com/mschout/perl-text-template
43 repository: https://github.com/mschout/perl-text-template.git
/openssl/dev/
H A DNEWS-FORMAT.md42 ```text
55 ```text
69 ```text
77 ```text
84 ```text
94 ```text
112 ```text
140 ```text
156 ```text
179 ```text
[all …]
/openssl/include/openssl/
H A Dtrace.h287 # define OSSL_TRACE(category, text) \ argument
288 OSSL_TRACEV(category, (trc_out, "%s", text))
310 int OSSL_trace_string(BIO *out, int text, int full,
312 #define OSSL_TRACE_STRING(category, text, full, data, len) \ argument
314 OSSL_trace_string(trc_out, text, full, data, len); \
/openssl/doc/man1/
H A Dopenssl-pkeyparam.pod.in18 [B<-text>]
49 =item B<-text>
51 Prints out the parameters in plain text in addition to the encoded version.
69 Print out text version of parameters:
71 openssl pkeyparam -in param.pem -text
/openssl/doc/man3/
H A DERR_print_errors.pod32 …rror code]:[library name]:[function name]:[reason string]:[filename]:[line]:[optional text message]
35 I<function name> and I<reason string> are ASCII text, as is I<optional
36 text message> if one was set for the respective error code.
38 If there is no text string registered for the given error code,
/openssl/crypto/ts/
H A Dts_rsp_print.c20 const char *text; member
83 for (i = 0; i < sk_ASN1_UTF8STRING_num(a->text); ++i) { in TS_STATUS_INFO_print_bio()
86 ASN1_STRING_print_ex(bio, sk_ASN1_UTF8STRING_value(a->text, i), 0); in TS_STATUS_INFO_print_bio()
111 BIO_printf(bio, "%s", a->text); in ts_status_map_print()

Completed in 46 milliseconds

123456789