| /freebsd/tools/tools/locale/tools/ |
| H A D | convert_map.pl | 25 my $utf8; 28 $utf8 = sprintf("\\x%02X", $ucs).$utf8; 30 $utf8 = sprintf("\\x%02X", ($ucs & 0x3f) | 0x80).$utf8; 32 $utf8 = sprintf("\\x%02X", $ucs | 0xc0).$utf8; 35 $utf8 = sprintf("\\x%02X", ($ucs & 0x3f) | 0x80).$utf8; 37 $utf8 = sprintf("\\x%02X", ($ucs & 0x3f) | 0x80).$utf8; 39 $utf8 = sprintf("\\x%02X", $ucs | 0xe0).$utf8; 42 $utf8 = sprintf("\\x%02X", ($ucs & 0x3f) | 0x80).$utf8; 44 $utf8 = sprintf("\\x%02X", ($ucs & 0x3f) | 0x80).$utf8; 46 $utf8 = sprintf("\\x%02X", ($ucs & 0x3f) | 0x80).$utf8; [all …]
|
| /freebsd/crypto/openssl/crypto/x509/ |
| H A D | v3_utf8.c | 30 ASN1_UTF8STRING *utf8) in i2s_ASN1_UTF8STRING() argument 34 if (utf8 == NULL || utf8->length == 0) { in i2s_ASN1_UTF8STRING() 38 if ((tmp = OPENSSL_malloc(utf8->length + 1)) == NULL) in i2s_ASN1_UTF8STRING() 40 memcpy(tmp, utf8->data, utf8->length); in i2s_ASN1_UTF8STRING() 41 tmp[utf8->length] = 0; in i2s_ASN1_UTF8STRING() 48 ASN1_UTF8STRING *utf8; in s2i_ASN1_UTF8STRING() local 53 if ((utf8 = ASN1_UTF8STRING_new()) == NULL) { in s2i_ASN1_UTF8STRING() 57 if (!ASN1_STRING_set((ASN1_STRING *)utf8, str, strlen(str))) { in s2i_ASN1_UTF8STRING() 59 ASN1_UTF8STRING_free(utf8); in s2i_ASN1_UTF8STRING() 63 ebcdic2ascii(utf8->data, utf8->data, utf8->length); in s2i_ASN1_UTF8STRING() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ConvertUTF.h | 130 typedef unsigned char UTF8; /* typically 8 bits */ typedef 161 const UTF8** sourceStart, const UTF8* sourceEnd, 165 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an 169 const UTF8** sourceStart, const UTF8* sourceEnd, 173 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an 177 const UTF8** sourceStart, const UTF8* sourceEnd, 182 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags); 186 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags); 196 Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd); 198 Boolean isLegalUTF8String(const UTF8 **source, const UTF8 *sourceEnd); [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | StringPrinter.cpp | 169 DecodedCharBuffer GetPrintableImpl<StringElementType::UTF8>( in GetPrintableImpl() 172 // If the utf8 encoded length is invalid (i.e., not in the closed interval in GetPrintableImpl() 174 // isn't valid utf8, fall back to printing an ASCII-escaped subsequence. in GetPrintableImpl() 179 // Convert the valid utf8 sequence to a utf32 codepoint. This cannot fail. in GetPrintableImpl() 181 const llvm::UTF8 *buffer_for_conversion = buffer; in GetPrintableImpl() 185 "Failed to convert legal utf8 sequence"); in GetPrintableImpl() 188 // The UTF8 helper always advances by the utf8 encoded length. in GetPrintableImpl() 228 case StringElementType::UTF8: in GetPrintable() 229 return GetPrintableImpl<StringElementType::UTF8>(buffe in GetPrintable() 260 DumpEncodedBufferToStream(GetPrintableElementType style,llvm::ConversionResult (* ConvertFunction)(const SourceDataType **,const SourceDataType *,llvm::UTF8 **,llvm::UTF8 *,llvm::ConversionFlags),const StringPrinter::ReadBufferAndDumpToStreamOptions & dump_options) DumpEncodedBufferToStream() argument 401 ReadEncodedBufferAndDumpToStream(StringElementType elem_type,const StringPrinter::ReadStringAndDumpToStreamOptions & options,llvm::ConversionResult (* ConvertFunction)(const SourceDataType **,const SourceDataType *,llvm::UTF8 **,llvm::UTF8 *,llvm::ConversionFlags)) ReadEncodedBufferAndDumpToStream() argument [all...] |
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ConvertUTFWrapper.cpp | 20 char *&ResultPtr, const UTF8 *&ErrorPtr) { in ConvertUTF8toWide() 25 const UTF8 *Pos = reinterpret_cast<const UTF8*>(Source.begin()); in ConvertUTF8toWide() 26 if (!isLegalUTF8String(&Pos, reinterpret_cast<const UTF8*>(Source.end()))) { in ConvertUTF8toWide() 34 const UTF8 *sourceStart = (const UTF8*)Source.data(); in ConvertUTF8toWide() 47 const UTF8 *sourceStart = (const UTF8 *)Source.data(); in ConvertUTF8toWide() 68 UTF8 *TargetStart = reinterpret_cast<UTF8 *>(ResultPtr); in ConvertCodePointToUTF8() 69 UTF8 *TargetEnd = TargetStart + 4; in ConvertCodePointToUTF8() 117 UTF8 *Dst = reinterpret_cast<UTF8 *>(&Out[0]); in convertUTF16ToUTF8String() 118 UTF8 *DstEnd = Dst + Out.size(); in convertUTF16ToUTF8String() 175 UTF8 *Dst = reinterpret_cast<UTF8 *>(&Out[0]); in convertUTF32ToUTF8String() [all …]
|
| H A D | ConvertUTF.cpp | 57 Jan 2004: updated switches in from-UTF8 conversions. 131 * Magic values subtracted from a buffer value during UTF8 conversion. 145 static const UTF8 firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC }; 265 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags) { in ConvertUTF16toUTF8() 268 UTF8* target = *targetStart; in ConvertUTF16toUTF8() 319 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8() 320 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8() 321 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8() 322 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]); in ConvertUTF16toUTF8() 335 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags) { in ConvertUTF32toUTF8() [all …]
|
| H A D | DJB.cpp | 23 const UTF8 *const Begin8Const = in chopOneUTF32() 24 reinterpret_cast<const UTF8 *>(Buffer.begin()); in chopOneUTF32() 25 const UTF8 *Begin8 = Begin8Const; in chopOneUTF32() 31 ConvertUTF8toUTF32(&Begin8, reinterpret_cast<const UTF8 *>(Buffer.end()), in chopOneUTF32() 37 static StringRef toUTF8(UTF32 C, MutableArrayRef<UTF8> Storage) { in toUTF8() 39 UTF8 *Begin8 = Storage.begin(); in toUTF8() 76 std::array<UTF8, UNI_MAX_UTF8_BYTES_PER_CODE_POINT> Storage; in caseFoldingDjbHash()
|
| /freebsd/crypto/openssl/test/recipes/ |
| H A D | 25-test_eai_data.t | 19 #./util/wrap.pl apps/openssl verify -nameopt utf8 -no_check_time -CAfile test/recipes/25-test_eai_d… 20 #./util/wrap.pl apps/openssl verify -nameopt utf8 -no_check_time -CAfile test/recipes/25-test_eai_d… 21 #./util/wrap.pl apps/openssl verify -nameopt utf8 -no_check_time -CAfile test/recipes/25-test_eai_d… 22 #./util/wrap.pl apps/openssl verify -nameopt utf8 -no_check_time -CAfile test/recipes/25-test_eai_d… 50 is(cmp_text($out, srctop_file($folder, "san.utf8")), 0, 'Comparing othername for IDN domain'); 55 …ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-verify_email", "学生\@eleme… 56 …ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-verify_email", "医生\@大学.ex… 59 ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-CAfile", $ascii_chain_pem,… 60 ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-CAfile", $utf8_chain_pem, … 61 ok(run(app(["openssl", "verify", "-nameopt", "utf8", "-no_check_time", "-CAfile", $kdc_chain_pem, $… [all …]
|
| H A D | 25-test_rusext.t | 24 my $out_utf8 = "grfc.utf8"; 31 "-nameopt", "utf8", "-certopt", "no_pubkey"]))); 32 is(cmp_text($out_utf8, srctop_file('test', 'recipes', '25-test_rusext_data', 'grfc.utf8')), 33 0, 'Comparing utf8 output'); 36 is(cmp_text($out_utf8, srctop_file('test', 'recipes', '25-test_rusext_data', 'grfc.utf8')), 37 0, 'Comparing cyrillic utf8 output by default');
|
| /freebsd/secure/lib/libcrypto/man/man7/ |
| H A D | EVP_SIGNATURE-RSA.7 | 120 .IP """digest"" (\fBOSSL_SIGNATURE_PARAM_DIGEST\fR) <UTF8 string>" 4 121 .IX Item """digest"" (OSSL_SIGNATURE_PARAM_DIGEST) <UTF8 string>" 123 .IP """properties"" (\fBOSSL_SIGNATURE_PARAM_PROPERTIES\fR) <UTF8 string>" 4 124 .IX Item """properties"" (OSSL_SIGNATURE_PARAM_PROPERTIES) <UTF8 string>" 130 .IP """pad-mode"" (\fBOSSL_SIGNATURE_PARAM_PAD_MODE\fR) <UTF8 string>" 4 131 .IX Item """pad-mode"" (OSSL_SIGNATURE_PARAM_PAD_MODE) <UTF8 string>" 151 .IP """mgf1\-digest"" (\fBOSSL_SIGNATURE_PARAM_MGF1_DIGEST\fR) <UTF8 string>" 4 152 .IX Item """mgf1-digest"" (OSSL_SIGNATURE_PARAM_MGF1_DIGEST) <UTF8 string>" 155 .IP """mgf1\-properties"" (\fBOSSL_SIGNATURE_PARAM_MGF1_PROPERTIES\fR) <UTF8 string>" 4 156 .IX Item """mgf1-properties"" (OSSL_SIGNATURE_PARAM_MGF1_PROPERTIES) <UTF8 string>" [all …]
|
| H A D | EVP_ASYM_CIPHER-RSA.7 | 71 .IP """pad-mode"" (\fBOSSL_ASYM_CIPHER_PARAM_PAD_MODE\fR) <UTF8 string>" 4 72 .IX Item """pad-mode"" (OSSL_ASYM_CIPHER_PARAM_PAD_MODE) <UTF8 string>" 116 .IP """digest"" (\fBOSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST\fR) <UTF8 string>" 4 117 .IX Item """digest"" (OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST) <UTF8 string>" 119 .IP """digest-props"" (\fBOSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS\fR) <UTF8 string>" 4 120 .IX Item """digest-props"" (OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS) <UTF8 string>" 121 .IP """mgf1\-digest"" (\fBOSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST\fR) <UTF8 string>" 4 122 .IX Item """mgf1-digest"" (OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST) <UTF8 string>" 123 .IP """mgf1\-digest\-props"" (\fBOSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST_PROPS\fR) <UTF8 string>" 4 124 .IX Item """mgf1-digest-props"" (OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST_PROPS) <UTF8 string>"
|
| H A D | provider-base.7 | 528 .IP """name"" (\fBOSSL_PROV_PARAM_NAME\fR) <UTF8 ptr>" 4 529 .IX Item """name"" (OSSL_PROV_PARAM_NAME) <UTF8 ptr>" 531 .IP """version"" (\fBOSSL_PROV_PARAM_VERSION\fR) <UTF8 ptr>" 4 532 .IX Item """version"" (OSSL_PROV_PARAM_VERSION) <UTF8 ptr>" 536 .IP """buildinfo"" (\fBOSSL_PROV_PARAM_BUILDINFO\fR) <UTF8 ptr>" 4 537 .IX Item """buildinfo"" (OSSL_PROV_PARAM_BUILDINFO) <UTF8 ptr>" 550 .IP """openssl-version"" (\fBOSSL_PROV_PARAM_CORE_VERSION\fR) <UTF8 string ptr>" 4 551 .IX Item """openssl-version"" (OSSL_PROV_PARAM_CORE_VERSION) <UTF8 string ptr>" 554 .IP """provider-name"" (\fBOSSL_PROV_PARAM_CORE_PROV_NAME\fR) <UTF8 string ptr>" 4 555 .IX Item """provider-name"" (OSSL_PROV_PARAM_CORE_PROV_NAME) <UTF8 string ptr>" [all …]
|
| H A D | provider-object.7 | 85 This means that the \fIobject data\fR is passed as an octet string or an UTF8 91 (see "Parameter reference" below), where it's assumed to a plain UTF8 string. 131 .IP """data"" (\fBOSSL_OBJECT_PARAM_DATA\fR) <octet string> or <UTF8 string>" 4 132 .IX Item """data"" (OSSL_OBJECT_PARAM_DATA) <octet string> or <UTF8 string>" 144 The object data may only be \fIpassed by value\fR, and should be a UTF8 172 .IP """data-type"" (\fBOSSL_OBJECT_PARAM_DATA_TYPE\fR) <UTF8 string>" 4 173 .IX Item """data-type"" (OSSL_OBJECT_PARAM_DATA_TYPE) <UTF8 string>" 178 .IP """data-structure"" (\fBOSSL_OBJECT_PARAM_DATA_STRUCTURE\fR) <UTF8 string>" 4 179 .IX Item """data-structure"" (OSSL_OBJECT_PARAM_DATA_STRUCTURE) <UTF8 string>" 182 .IP """desc"" (\fBOSSL_OBJECT_PARAM_DESC\fR) <UTF8 string>" 4 [all …]
|
| H A D | EVP_PKEY-EC.7 | 81 .IP """group"" (\fBOSSL_PKEY_PARAM_GROUP_NAME\fR) <UTF8 string>" 4 82 .IX Item """group"" (OSSL_PKEY_PARAM_GROUP_NAME) <UTF8 string>" 84 .IP """field-type"" (\fBOSSL_PKEY_PARAM_EC_FIELD_TYPE\fR) <UTF8 string>" 4 85 .IX Item """field-type"" (OSSL_PKEY_PARAM_EC_FIELD_TYPE) <UTF8 string>" 137 .IP """encoding"" (\fBOSSL_PKEY_PARAM_EC_ENCODING\fR) <UTF8 string>" 4 138 .IX Item """encoding"" (OSSL_PKEY_PARAM_EC_ENCODING) <UTF8 string>" 141 .IP """point-format"" (\fBOSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT\fR) <UTF8 string>" 4 142 .IX Item """point-format"" (OSSL_PKEY_PARAM_EC_POINT_CONVERSION_FORMAT) <UTF8 string>" 146 .IP """group-check"" (\fBOSSL_PKEY_PARAM_EC_GROUP_CHECK_TYPE\fR) <UTF8 string>" 4 147 .IX Item """group-check"" (OSSL_PKEY_PARAM_EC_GROUP_CHECK_TYPE) <UTF8 string>" [all …]
|
| H A D | provider-kdf.7 | 222 .IP """cipher"" (\fBOSSL_KDF_PARAM_CIPHER\fR) <UTF8 string>" 4 223 .IX Item """cipher"" (OSSL_KDF_PARAM_CIPHER) <UTF8 string>" 225 .IP """digest"" (\fBOSSL_KDF_PARAM_DIGEST\fR) <UTF8 string>" 4 226 .IX Item """digest"" (OSSL_KDF_PARAM_DIGEST) <UTF8 string>" 227 .IP """mac"" (\fBOSSL_KDF_PARAM_MAC\fR) <UTF8 string>" 4 228 .IX Item """mac"" (OSSL_KDF_PARAM_MAC) <UTF8 string>" 235 .IP """properties"" (\fBOSSL_KDF_PARAM_PROPERTIES\fR) <UTF8 string>" 4 236 .IX Item """properties"" (OSSL_KDF_PARAM_PROPERTIES) <UTF8 string>" 243 .IP """mode"" (\fBOSSL_KDF_PARAM_MODE\fR) <UTF8 string>" 4 244 .IX Item """mode"" (OSSL_KDF_PARAM_MODE) <UTF8 string>" [all …]
|
| H A D | provider-asym_cipher.7 | 243 .IP """pad-mode"" (\fBOSSL_ASYM_CIPHER_PARAM_PAD_MODE\fR) <UTF8 string> OR <integer>" 4 244 .IX Item """pad-mode"" (OSSL_ASYM_CIPHER_PARAM_PAD_MODE) <UTF8 string> OR <integer>" 247 .IP """digest"" (\fBOSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST\fR) <UTF8 string>" 4 248 .IX Item """digest"" (OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST) <UTF8 string>" 251 .IP """digest"" (\fBOSSL_ASYM_CIPHER_PARAM_DIGEST\fR) <UTF8 string>" 4 252 .IX Item """digest"" (OSSL_ASYM_CIPHER_PARAM_DIGEST) <UTF8 string>" 255 .IP """digest-props"" (\fBOSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS\fR) <UTF8 string>" 4 256 .IX Item """digest-props"" (OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS) <UTF8 string>" 258 .IP """digest-props"" (\fBOSSL_ASYM_CIPHER_PARAM_DIGEST_PROPS\fR) <UTF8 string>" 4 259 .IX Item """digest-props"" (OSSL_ASYM_CIPHER_PARAM_DIGEST_PROPS) <UTF8 string>" [all …]
|
| H A D | EVP_PKEY-HMAC.7 | 85 .IP """properties"" (\fBOSSL_PKEY_PARAM_PROPERTIES\fR) <UTF8 string>" 4 86 .IX Item """properties"" (OSSL_PKEY_PARAM_PROPERTIES) <UTF8 string>" 92 .IP """cipher"" (\fBOSSL_PKEY_PARAM_CIPHER\fR) <UTF8 string>" 4 93 .IX Item """cipher"" (OSSL_PKEY_PARAM_CIPHER) <UTF8 string>" 95 .IP """engine"" (\fBOSSL_PKEY_PARAM_ENGINE\fR) <UTF8 string>" 4 96 .IX Item """engine"" (OSSL_PKEY_PARAM_ENGINE) <UTF8 string>" 110 .IP """cipher"" (\fBOSSL_PKEY_PARAM_CIPHER\fR) <UTF8 string>" 4 111 .IX Item """cipher"" (OSSL_PKEY_PARAM_CIPHER) <UTF8 string>"
|
| H A D | EVP_KDF-KB.7 | 79 .IP """mode"" (\fBOSSL_KDF_PARAM_MODE\fR) <UTF8 string>" 4 80 .IX Item """mode"" (OSSL_KDF_PARAM_MODE) <UTF8 string>" 84 .IP """mac"" (\fBOSSL_KDF_PARAM_MAC\fR) <UTF8 string>" 4 85 .IX Item """mac"" (OSSL_KDF_PARAM_MAC) <UTF8 string>" 87 .IP """digest"" (\fBOSSL_KDF_PARAM_DIGEST\fR) <UTF8 string>" 4 88 .IX Item """digest"" (OSSL_KDF_PARAM_DIGEST) <UTF8 string>" 90 .IP """cipher"" (\fBOSSL_KDF_PARAM_CIPHER\fR) <UTF8 string>" 4 91 .IX Item """cipher"" (OSSL_KDF_PARAM_CIPHER) <UTF8 string>" 92 .IP """properties"" (\fBOSSL_KDF_PARAM_PROPERTIES\fR) <UTF8 string>" 4 93 .IX Item """properties"" (OSSL_KDF_PARAM_PROPERTIES) <UTF8 string>"
|
| /freebsd/crypto/krb5/src/util/support/ |
| H A D | t_utf16.c | 44 #include "k5-utf8.h" 47 const char *utf8; member 89 char *utf8; in main() local 93 if (t->utf8 != NULL) { in main() 94 ret = k5_utf8_to_utf16le(t->utf8, &utf16, &utf16len); in main() 106 ret = k5_utf16le_to_utf8((uint8_t *)t->utf16, t->utf16len, &utf8); in main() 107 if (t->utf8 == NULL) { in main() 111 assert(strcmp(t->utf8, utf8) == 0); in main() 112 free(utf8); in main()
|
| /freebsd/crypto/heimdal/lib/wind/ |
| H A D | ChangeLog | 11 * Add utf8 <-> utf16 support. 19 * Support utf8 to utf16 conversion. 87 * utf8.c: Make wind_utf8ucs4_length() work again. 89 * test-utf8.c: Test wind_utf8ucs4_length(). 93 * utf8.c: Fix overaggressive checks, fix comments. 106 * test-utf8.c: spelling 108 * utf8.c: Add wind_ucs4toutf8 112 * test-utf8.c: Add test for wind_ucs4toutf8. 116 * utf8.c (wind_utf8toucs4): allow calculation of length by passing
|
| /freebsd/crypto/krb5/src/lib/crypto/krb/ |
| H A D | s2k_rc4.c | 3 #include "k5-utf8.h" 13 char *utf8; in krb5int_arcfour_string_to_key() local 24 utf8 = k5memdup0(string->data, string->length, &err); in krb5int_arcfour_string_to_key() 25 if (utf8 == NULL) in krb5int_arcfour_string_to_key() 27 err = k5_utf8_to_utf16le(utf8, ©str, ©strlen); in krb5int_arcfour_string_to_key() 28 zapfree(utf8, string->length); in krb5int_arcfour_string_to_key()
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | OSSL_SELF_TEST_new.3 | 100 .IP """st-phase"" (\fBOSSL_PROV_PARAM_SELF_TEST_PHASE\fR) <UTF8 string>" 4 101 .IX Item """st-phase"" (OSSL_PROV_PARAM_SELF_TEST_PHASE) <UTF8 string>" 112 .IP """st-phase"" (\fBOSSL_PROV_PARAM_SELF_TEST_PHASE\fR) <UTF8 string>" 4 113 .IX Item """st-phase"" (OSSL_PROV_PARAM_SELF_TEST_PHASE) <UTF8 string>" 121 .IP """st-phase"" (\fBOSSL_PROV_PARAM_SELF_TEST_PHASE\fR) <UTF8 string>" 4 122 .IX Item """st-phase"" (OSSL_PROV_PARAM_SELF_TEST_PHASE) <UTF8 string>" 132 .IP """st-type"" (\fBOSSL_PROV_PARAM_SELF_TEST_TYPE\fR) <UTF8 string>" 4 133 .IX Item """st-type"" (OSSL_PROV_PARAM_SELF_TEST_TYPE) <UTF8 string>" 136 .IP """st-desc"" (\fBOSSL_PROV_PARAM_SELF_TEST_DESC\fR) <UTF8 string>" 4 137 .IX Item """st-desc"" (OSSL_PROV_PARAM_SELF_TEST_DESC) <UTF8 string>"
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | EVP_SIGNATURE-RSA.pod | 71 =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string> 73 =item "properties" (B<OSSL_SIGNATURE_PARAM_PROPERTIES>) <UTF8 string> 80 =item "pad-mode" (B<OSSL_SIGNATURE_PARAM_PAD_MODE>) <UTF8 string> 100 =item "mgf1-digest" (B<OSSL_SIGNATURE_PARAM_MGF1_DIGEST>) <UTF8 string> 104 =item "mgf1-properties" (B<OSSL_SIGNATURE_PARAM_MGF1_PROPERTIES>) <UTF8 string> 109 =item "saltlen" (B<OSSL_SIGNATURE_PARAM_PSS_SALTLEN>) <integer> or <UTF8 string> 174 =item "digest" (B<OSSL_SIGNATURE_PARAM_DIGEST>) <UTF8 string> 176 =item "pad-mode" (B<OSSL_SIGNATURE_PARAM_PAD_MODE>) <UTF8 string> 178 =item "mgf1-digest" (B<OSSL_SIGNATURE_PARAM_MGF1_DIGEST>) <UTF8 string> 180 =item "saltlen" (B<OSSL_SIGNATURE_PARAM_PSS_SALTLEN>) <integer> or <UTF8 string>
|
| /freebsd/contrib/libarchive/libarchive/test/ |
| H A D | test_archive_string_conversion.c | 53 /* Translate code point to UTF8 */ in unicode_to_utf8() 253 struct archive_string utf8; in test_archive_string_normalization_nfc() local 273 archive_string_init(&utf8); in test_archive_string_normalization_nfc() 357 &utf8, utf8_nfd, f_sconv8)); in test_archive_string_normalization_nfc() 360 assertEqualUTF8String(utf8_nfc, utf8.s); in test_archive_string_normalization_nfc() 366 &utf8, utf8_nfc, f_sconv8)); in test_archive_string_normalization_nfc() 369 assertEqualUTF8String(utf8_nfc, utf8.s); in test_archive_string_normalization_nfc() 375 &utf8, utf8_nfc, t_sconv8)); in test_archive_string_normalization_nfc() 378 assertEqualUTF8String(utf8_nfc, utf8.s); in test_archive_string_normalization_nfc() 384 &utf8, utf16be_nfd, 100000, f_sconv16be)); in test_archive_string_normalization_nfc() [all …]
|
| /freebsd/crypto/heimdal/doc/doxyout/ntlm/man/man3/ |
| H A D | ntlm_core.3 | 126 \fIusername\fP name of the user, as sent in the message, assumed to be in UTF8. 128 \fItarget\fP the name of the target, assumed to be in UTF8. 174 \fIusername\fP name of the user, as sent in the message, assumed to be in UTF8. 176 \fItarget\fP the name of the target, assumed to be in UTF8. 353 Calculate the NTLM key, the password is assumed to be in UTF8. 378 \fIusername\fP name of the user, as sent in the message, assumed to be in UTF8. 380 \fItarget\fP the name of the target, assumed to be in UTF8. 401 \fIusername\fP name of the user, as sent in the message, assumed to be in UTF8. 403 \fItarget\fP the name of the target, assumed to be in UTF8.
|