Home
last modified time | relevance | path

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

12345678

/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.c65 ctx->len.text = 0; in chacha20_poly1305_initkey()
83 ctx->len.text = 0; in chacha20_poly1305_initiv()
145 ctx->len.text = plen; in chacha20_poly1305_tls_cipher()
170 ctx->len.text = plen; in chacha20_poly1305_tls_cipher()
204 ctx->len.text = plen; in chacha20_poly1305_tls_cipher()
232 ctr[8] = (unsigned char)(ctx->len.text); in chacha20_poly1305_tls_cipher()
233 ctr[9] = (unsigned char)(ctx->len.text>>8); in chacha20_poly1305_tls_cipher()
234 ctr[10] = (unsigned char)(ctx->len.text>>16); in chacha20_poly1305_tls_cipher()
296 ctx->len.aad = ctx->len.text = 0; in chacha20_poly1305_aead_cipher()
329 ctx->len.text += plen; in chacha20_poly1305_aead_cipher()
[all …]
/openssl/test/
H A Dmdc2test.c52 static char text[] = "Now is the time for all "; in test_mdc2() local
53 size_t tlen = strlen(text), i = 0; in test_mdc2()
66 ebcdic2ascii(text, text, tlen); in test_mdc2()
72 || !TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen)) in test_mdc2()
79 || !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
50 fixture->text))) in execute_PKISI_test()
61 || !TEST_mem_eq(fixture->text, strlen(fixture->text), in execute_PKISI_test()
85 fixture->text = "this is an additional text describing the failure"; in test_PKISI()
H A Dcmp_hdr_test.c232 ASN1_UTF8STRING *text = ASN1_UTF8STRING_new(); in execute_HDR_push0_freeText_test() local
234 if (!TEST_ptr(text)) in execute_HDR_push0_freeText_test()
237 if (!ASN1_STRING_set(text, "A free text", -1)) in execute_HDR_push0_freeText_test()
240 if (!TEST_int_eq(ossl_cmp_hdr_push0_freeText(fixture->hdr, text), 1)) in execute_HDR_push0_freeText_test()
249 ASN1_UTF8STRING_free(text); in execute_HDR_push0_freeText_test()
263 ASN1_UTF8STRING *text = ASN1_UTF8STRING_new(); in execute_HDR_push1_freeText_test() local
267 if (!TEST_ptr(text)) in execute_HDR_push1_freeText_test()
270 if (!ASN1_STRING_set(text, "A free text", -1)) in execute_HDR_push1_freeText_test()
273 if (!TEST_int_eq(ossl_cmp_hdr_push1_freeText(fixture->hdr, text), 1)) in execute_HDR_push1_freeText_test()
277 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
79 const size_t text_len = sizeof(text); in test_idea_cbc()
84 IDEA_cbc_encrypt(text, out, text_len, &key, iv, 1); in test_idea_cbc()
88 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.pm77 my $text = join('',
86 while ($text =~ m/${OID_def_re}/sg) {
106 my $text = '';
110 $text .= $lines;
112 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, BIO *out,
72 int ret = 1, noout = 0, text = 0, recursive = 0; in storeutl_main() local
113 text = 1; in storeutl_main()
322 text, noout, recursive, 0, out, prog, libctx); in storeutl_main()
353 int text, int noout, int recursive, int indent, BIO *out, in process() argument
443 text, noout, recursive, indent + 2, out, prog, in process()
448 if (text) in process()
456 if (text) in process()
463 if (text) in process()
471 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()
H A Dpkeyparam.c52 int text = 0, noout = 0, ret = EXIT_FAILURE, check = 0, r; in pkeyparam_main() local
78 text = 1; in pkeyparam_main()
140 if (text) in pkeyparam_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.c171 ASN1_UTF8STRING *text; in snprint_PKIStatusInfo_parts() local
222 text = sk_ASN1_UTF8STRING_value(status_strings, i); in snprint_PKIStatusInfo_parts()
224 ASN1_STRING_length(text), in snprint_PKIStatusInfo_parts()
225 ASN1_STRING_get0_data(text), in snprint_PKIStatusInfo_parts()
272 const char *text) in OSSL_CMP_STATUSINFO_new() argument
283 if (text != NULL) { in OSSL_CMP_STATUSINFO_new()
285 || !ASN1_STRING_set(utf8_text, text, -1)) in OSSL_CMP_STATUSINFO_new()
H A Dcmp_hdr.c162 int ossl_cmp_hdr_push0_freeText(OSSL_CMP_PKIHEADER *hdr, ASN1_UTF8STRING *text) in ossl_cmp_hdr_push0_freeText() argument
164 if (!ossl_assert(hdr != NULL && text != NULL)) in ossl_cmp_hdr_push0_freeText()
171 return sk_ASN1_UTF8STRING_push(hdr->freeText, text); in ossl_cmp_hdr_push0_freeText()
174 int ossl_cmp_hdr_push1_freeText(OSSL_CMP_PKIHEADER *hdr, ASN1_UTF8STRING *text) in ossl_cmp_hdr_push1_freeText() argument
176 if (!ossl_assert(hdr != NULL && text != NULL)) in ossl_cmp_hdr_push1_freeText()
184 ossl_cmp_sk_ASN1_UTF8STRING_push_str(hdr->freeText, (char *)text->data, in ossl_cmp_hdr_push1_freeText()
185 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/include/internal/
H A Drefcount.h173 # define REF_PRINT_EX(text, count, object) \ argument
174 OSSL_TRACE3(REF_COUNT, "%p:%4d:%s\n", (object), (count), (text));
175 # define REF_PRINT_COUNT(text, object) \ argument
176 REF_PRINT_EX(text, object->references, (void *)object)
/openssl/doc/man1/
H A Dopenssl-pkeyparam.pod.in18 [B<-text>]
46 =item B<-text>
48 Prints out the parameters in plain text in addition to the encoded version.
66 Print out text version of parameters:
68 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 87 milliseconds

12345678