Home
last modified time | relevance | path

Searched refs:utf (Results 1 – 5 of 5) sorted by relevance

/openssl/crypto/
H A Dpunycode.c205 if (utf <= 0x7F) { in codepoint2utf8()
207 out[0] = (unsigned char)utf; in codepoint2utf8()
210 } else if (utf <= 0x07FF) { in codepoint2utf8()
212 out[0] = (unsigned char)(((utf >> 6) & 0x1F) | 0xC0); in codepoint2utf8()
213 out[1] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80); in codepoint2utf8()
216 } else if (utf <= 0xFFFF) { in codepoint2utf8()
219 out[1] = (unsigned char)(((utf >> 6) & 0x3F) | 0x80); in codepoint2utf8()
220 out[2] = (unsigned char)(((utf >> 0) & 0x3F) | 0x80); in codepoint2utf8()
223 } else if (utf <= 0x10FFFF) { in codepoint2utf8()
227 out[2] = (unsigned char)(((utf >> 6) & 0x3F) | 0x80); in codepoint2utf8()
[all …]
/openssl/test/recipes/
H A D25-test_x509.t34 my $utf = srctop_file(@certs, "cyrillic.utf8");
42 is(cmp_text($out_utf8, $utf),
H A D25-test_crl.t24 my $utf = srctop_file("test/certs", "cyrillic_crl.utf8");
/openssl/test/
H A Dparam_build_test.c31 char *utf = NULL; in template_public_test() local
120 || !TEST_true(OSSL_PARAM_get_utf8_string(p, &utf, 0)) in template_public_test()
121 || !TEST_str_eq(utf, "foo") in template_public_test()
146 OPENSSL_free(utf); in template_public_test()
/openssl/doc/man3/
H A DEVP_PKEY_fromdata.pod235 datatype = "printable string (utf-8 encoding expected)";
238 datatype = "printable string pointer (utf-8 encoding expected)";

Completed in 11 milliseconds