Lines Matching +full:0 +full:xc3
55 characters in the 0x80-0x9F range).
59 OpenSSL versions older than 1.1.0 do variant 2 only, and that is the reason why
65 0xC3 0xAF (which is the two characters "LATIN CAPITAL LETTER A WITH BREVE"
71 outcome in OpenSSL 1.1.0 and newer than in OpenSSL older than 1.1.0.
73 0x00 0xC3 0x00 0xAF # OpenSSL older than 1.1.0
74 0x00 0xEF # OpenSSL 1.1.0 and newer
77 than 1.1.0 was misinterpreted as ISO-8859-1 sequences.
95 encoding was ISO-8859-1 (i.e. "naïve" resulting in the byte sequence 0x6E 0x61
96 0xEF 0x76 0x65), and you're now in an environment where your default encoding
97 is UTF-8 (i.e. "naïve" resulting in the byte sequence 0x6E 0x61 0xC3 0xAF 0x76
98 0x65).
154 OpenSSL older than 1.1.0.
155 (for example, C<ï>, which is 0xC3 0xAF when encoded in UTF-8, would become 0xC3
156 0x83 0xC2 0xAF when re-encoded in the naïve manner.
157 The conversion to BMPString would then yield 0x00 0xC3 0x00 0xA4 0x00 0x00, the
158 erroneous/non-compliant encoding used by OpenSSL older than 1.1.0)