ICU 64.2  64.2
Namespaces | Typedefs | Enumerations | Functions
uspoof.h File Reference

Unicode Security and Spoofing Detection, C API. More...

#include "unicode/utypes.h"
#include "unicode/uset.h"
#include "unicode/parseerr.h"
#include "unicode/localpointer.h"
#include "unicode/unistr.h"
#include "unicode/uniset.h"

Go to the source code of this file.

Namespaces

 icu
 File coll.h.
 

Typedefs

typedef struct USpoofChecker USpoofChecker
 typedef for C of USpoofChecker More...
 
typedef struct USpoofCheckResult USpoofCheckResult
 
typedef enum USpoofChecks USpoofChecks
 Enum for the kinds of checks that USpoofChecker can perform. More...
 
typedef enum URestrictionLevel URestrictionLevel
 Constants from UAX #39 for use in uspoof_setRestrictionLevel, and for returned identifier restriction levels in check results. More...
 

Enumerations

enum  USpoofChecks {
  USPOOF_SINGLE_SCRIPT_CONFUSABLE = 1, USPOOF_MIXED_SCRIPT_CONFUSABLE = 2, USPOOF_WHOLE_SCRIPT_CONFUSABLE = 4, USPOOF_CONFUSABLE = USPOOF_SINGLE_SCRIPT_CONFUSABLE | USPOOF_MIXED_SCRIPT_CONFUSABLE | USPOOF_WHOLE_SCRIPT_CONFUSABLE,
  USPOOF_ANY_CASE = 8, USPOOF_RESTRICTION_LEVEL = 16, USPOOF_SINGLE_SCRIPT = USPOOF_RESTRICTION_LEVEL, USPOOF_INVISIBLE = 32,
  USPOOF_CHAR_LIMIT = 64, USPOOF_MIXED_NUMBERS = 128, USPOOF_HIDDEN_OVERLAY = 256, USPOOF_ALL_CHECKS = 0xFFFF,
  USPOOF_AUX_INFO = 0x40000000
}
 Enum for the kinds of checks that USpoofChecker can perform. More...
 
enum  URestrictionLevel {
  USPOOF_ASCII = 0x10000000, USPOOF_SINGLE_SCRIPT_RESTRICTIVE = 0x20000000, USPOOF_HIGHLY_RESTRICTIVE = 0x30000000, USPOOF_MODERATELY_RESTRICTIVE = 0x40000000,
  USPOOF_MINIMALLY_RESTRICTIVE = 0x50000000, USPOOF_UNRESTRICTIVE = 0x60000000, USPOOF_RESTRICTION_LEVEL_MASK = 0x7F000000, USPOOF_UNDEFINED_RESTRICTIVE = -1
}
 Constants from UAX #39 for use in uspoof_setRestrictionLevel, and for returned identifier restriction levels in check results. More...
 

Functions

USpoofCheckeruspoof_open (UErrorCode *status)
 Create a Unicode Spoof Checker, configured to perform all checks except for USPOOF_LOCALE_LIMIT and USPOOF_CHAR_LIMIT. More...
 
USpoofCheckeruspoof_openFromSerialized (const void *data, int32_t length, int32_t *pActualLength, UErrorCode *pErrorCode)
 Open a Spoof checker from its serialized form, stored in 32-bit-aligned memory. More...
 
USpoofCheckeruspoof_openFromSource (const char *confusables, int32_t confusablesLen, const char *confusablesWholeScript, int32_t confusablesWholeScriptLen, int32_t *errType, UParseError *pe, UErrorCode *status)
 Open a Spoof Checker from the source form of the spoof data. More...
 
void uspoof_close (USpoofChecker *sc)
 Close a Spoof Checker, freeing any memory that was being held by its implementation. More...
 
USpoofCheckeruspoof_clone (const USpoofChecker *sc, UErrorCode *status)
 Clone a Spoof Checker. More...
 
U_STABLE void U_EXPORT2 uspoof_setChecks (USpoofChecker *sc, int32_t checks, UErrorCode *status)
 Specify the bitmask of checks that will be performed by uspoof_check. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_getChecks (const USpoofChecker *sc, UErrorCode *status)
 Get the set of checks that this Spoof Checker has been configured to perform. More...
 
U_STABLE void U_EXPORT2 uspoof_setRestrictionLevel (USpoofChecker *sc, URestrictionLevel restrictionLevel)
 Set the loosest restriction level allowed for strings. More...
 
U_STABLE URestrictionLevel U_EXPORT2 uspoof_getRestrictionLevel (const USpoofChecker *sc)
 Get the Restriction Level that will be tested if the checks include USPOOF_RESTRICTION_LEVEL. More...
 
U_STABLE void U_EXPORT2 uspoof_setAllowedLocales (USpoofChecker *sc, const char *localesList, UErrorCode *status)
 Limit characters that are acceptable in identifiers being checked to those normally used with the languages associated with the specified locales. More...
 
U_STABLE const char *U_EXPORT2 uspoof_getAllowedLocales (USpoofChecker *sc, UErrorCode *status)
 Get a list of locales for the scripts that are acceptable in strings to be checked. More...
 
U_STABLE void U_EXPORT2 uspoof_setAllowedChars (USpoofChecker *sc, const USet *chars, UErrorCode *status)
 Limit the acceptable characters to those specified by a Unicode Set. More...
 
U_STABLE const USet *U_EXPORT2 uspoof_getAllowedChars (const USpoofChecker *sc, UErrorCode *status)
 Get a USet for the characters permitted in an identifier. More...
 
U_STABLE void U_EXPORT2 uspoof_setAllowedUnicodeSet (USpoofChecker *sc, const icu::UnicodeSet *chars, UErrorCode *status)
 Limit the acceptable characters to those specified by a Unicode Set. More...
 
U_STABLE const icu::UnicodeSet *U_EXPORT2 uspoof_getAllowedUnicodeSet (const USpoofChecker *sc, UErrorCode *status)
 Get a UnicodeSet for the characters permitted in an identifier. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_check (const USpoofChecker *sc, const UChar *id, int32_t length, int32_t *position, UErrorCode *status)
 Check the specified string for possible security issues. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_checkUTF8 (const USpoofChecker *sc, const char *id, int32_t length, int32_t *position, UErrorCode *status)
 Check the specified string for possible security issues. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_checkUnicodeString (const USpoofChecker *sc, const icu::UnicodeString &id, int32_t *position, UErrorCode *status)
 Check the specified string for possible security issues. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_check2 (const USpoofChecker *sc, const UChar *id, int32_t length, USpoofCheckResult *checkResult, UErrorCode *status)
 Check the specified string for possible security issues. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_check2UTF8 (const USpoofChecker *sc, const char *id, int32_t length, USpoofCheckResult *checkResult, UErrorCode *status)
 Check the specified string for possible security issues. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_check2UnicodeString (const USpoofChecker *sc, const icu::UnicodeString &id, USpoofCheckResult *checkResult, UErrorCode *status)
 Check the specified string for possible security issues. More...
 
U_STABLE USpoofCheckResult *U_EXPORT2 uspoof_openCheckResult (UErrorCode *status)
 Create a USpoofCheckResult, used by the uspoof_check2 class of functions to return information about the identifier. More...
 
U_STABLE void U_EXPORT2 uspoof_closeCheckResult (USpoofCheckResult *checkResult)
 Close a USpoofCheckResult, freeing any memory that was being held by its implementation. More...
 
U_NAMESPACE_END U_STABLE int32_t U_EXPORT2 uspoof_getCheckResultChecks (const USpoofCheckResult *checkResult, UErrorCode *status)
 Indicates which of the spoof check(s) have failed. More...
 
U_STABLE URestrictionLevel U_EXPORT2 uspoof_getCheckResultRestrictionLevel (const USpoofCheckResult *checkResult, UErrorCode *status)
 Gets the restriction level that the text meets, if the USPOOF_RESTRICTION_LEVEL check was enabled; otherwise, undefined. More...
 
U_STABLE const USet *U_EXPORT2 uspoof_getCheckResultNumerics (const USpoofCheckResult *checkResult, UErrorCode *status)
 Gets the set of numerics found in the string, if the USPOOF_MIXED_NUMBERS check was enabled; otherwise, undefined. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_areConfusable (const USpoofChecker *sc, const UChar *id1, int32_t length1, const UChar *id2, int32_t length2, UErrorCode *status)
 Check the whether two specified strings are visually confusable. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_areConfusableUTF8 (const USpoofChecker *sc, const char *id1, int32_t length1, const char *id2, int32_t length2, UErrorCode *status)
 A version of uspoof_areConfusable accepting strings in UTF-8 format. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_areConfusableUnicodeString (const USpoofChecker *sc, const icu::UnicodeString &s1, const icu::UnicodeString &s2, UErrorCode *status)
 A version of uspoof_areConfusable accepting UnicodeStrings. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_getSkeleton (const USpoofChecker *sc, uint32_t type, const UChar *id, int32_t length, UChar *dest, int32_t destCapacity, UErrorCode *status)
 Get the "skeleton" for an identifier. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_getSkeletonUTF8 (const USpoofChecker *sc, uint32_t type, const char *id, int32_t length, char *dest, int32_t destCapacity, UErrorCode *status)
 Get the "skeleton" for an identifier. More...
 
U_I18N_API icu::UnicodeString &U_EXPORT2 uspoof_getSkeletonUnicodeString (const USpoofChecker *sc, uint32_t type, const icu::UnicodeString &id, icu::UnicodeString &dest, UErrorCode *status)
 Get the "skeleton" for an identifier. More...
 
U_STABLE const USet *U_EXPORT2 uspoof_getInclusionSet (UErrorCode *status)
 Get the set of Candidate Characters for Inclusion in Identifiers, as defined in http://unicode.org/Public/security/latest/xidmodifications.txt and documented in http://www.unicode.org/reports/tr39/, Unicode Security Mechanisms. More...
 
U_STABLE const USet *U_EXPORT2 uspoof_getRecommendedSet (UErrorCode *status)
 Get the set of characters from Recommended Scripts for Inclusion in Identifiers, as defined in http://unicode.org/Public/security/latest/xidmodifications.txt and documented in http://www.unicode.org/reports/tr39/, Unicode Security Mechanisms. More...
 
U_STABLE const icu::UnicodeSet *U_EXPORT2 uspoof_getInclusionUnicodeSet (UErrorCode *status)
 Get the set of Candidate Characters for Inclusion in Identifiers, as defined in http://unicode.org/Public/security/latest/xidmodifications.txt and documented in http://www.unicode.org/reports/tr39/, Unicode Security Mechanisms. More...
 
U_STABLE const icu::UnicodeSet *U_EXPORT2 uspoof_getRecommendedUnicodeSet (UErrorCode *status)
 Get the set of characters from Recommended Scripts for Inclusion in Identifiers, as defined in http://unicode.org/Public/security/latest/xidmodifications.txt and documented in http://www.unicode.org/reports/tr39/, Unicode Security Mechanisms. More...
 
U_STABLE int32_t U_EXPORT2 uspoof_serialize (USpoofChecker *sc, void *data, int32_t capacity, UErrorCode *status)
 Serialize the data for a spoof detector into a chunk of memory. More...
 

Detailed Description

Unicode Security and Spoofing Detection, C API.

This class, based on Unicode Technical Report #36 and Unicode Technical Standard #39, has two main functions:

  1. Checking whether two strings are visually confusable with each other, such as "Harvest" and "Ηarvest", where the second string starts with the Greek capital letter Eta.
  2. Checking whether an individual string is likely to be an attempt at confusing the reader (spoof detection), such as "paypal" with some Latin characters substituted with Cyrillic look-alikes.

Although originally designed as a method for flagging suspicious identifier strings such as URLs, USpoofChecker has a number of other practical use cases, such as preventing attempts to evade bad-word content filters.

The functions of this class are exposed as C API, with a handful of syntactical conveniences for C++.

Confusables

The following example shows how to use USpoofChecker to check for confusability between two strings:

UChar* str1 = (UChar*) u"Harvest";
UChar* str2 = (UChar*) u"\u0397arvest"; // with U+0397 GREEK CAPITAL LETTER ETA
USpoofChecker* sc = uspoof_open(&status);
int32_t bitmask = uspoof_areConfusable(sc, str1, -1, str2, -1, &status);
UBool result = bitmask != 0;
// areConfusable: 1 (status: U_ZERO_ERROR)
printf("areConfusable: %d (status: %s)\n", result, u_errorName(status));

The call to uspoof_open creates a USpoofChecker object; the call to uspoof_setChecks enables confusable checking and disables all other checks; the call to uspoof_areConfusable performs the confusability test; and the following line extracts the result out of the return value. For best performance, the instance should be created once (e.g., upon application startup), and the efficient uspoof_areConfusable method can be used at runtime.

The type LocalUSpoofCheckerPointer is exposed for C++ programmers. It will automatically call uspoof_close when the object goes out of scope:

UTS 39 defines two strings to be confusable if they map to the same skeleton string. A skeleton can be thought of as a "hash code". uspoof_getSkeleton computes the skeleton for a particular string, so the following snippet is equivalent to the example above:

UChar* str1 = (UChar*) u"Harvest";
UChar* str2 = (UChar*) u"\u0397arvest"; // with U+0397 GREEK CAPITAL LETTER ETA
USpoofChecker* sc = uspoof_open(&status);
// Get skeleton 1
int32_t skel1Len = uspoof_getSkeleton(sc, 0, str1, -1, NULL, 0, &status);
UChar* skel1 = (UChar*) malloc(++skel1Len * sizeof(UChar));
status = U_ZERO_ERROR;
uspoof_getSkeleton(sc, 0, str1, -1, skel1, skel1Len, &status);
// Get skeleton 2
int32_t skel2Len = uspoof_getSkeleton(sc, 0, str2, -1, NULL, 0, &status);
UChar* skel2 = (UChar*) malloc(++skel2Len * sizeof(UChar));
status = U_ZERO_ERROR;
uspoof_getSkeleton(sc, 0, str2, -1, skel2, skel2Len, &status);
// Are the skeletons the same?
UBool result = u_strcmp(skel1, skel2) == 0;
// areConfusable: 1 (status: U_ZERO_ERROR)
printf("areConfusable: %d (status: %s)\n", result, u_errorName(status));
free(skel1);
free(skel2);

If you need to check if a string is confusable with any string in a dictionary of many strings, rather than calling uspoof_areConfusable many times in a loop, uspoof_getSkeleton can be used instead, as shown below:

#define DICTIONARY_LENGTH 2
UChar* dictionary[DICTIONARY_LENGTH] = { (UChar*) u"lorem", (UChar*) u"ipsum" };
UChar* skeletons[DICTIONARY_LENGTH];
UChar* str = (UChar*) u"1orern";
// Setup:
USpoofChecker* sc = uspoof_open(&status);
for (size_t i=0; i<DICTIONARY_LENGTH; i++) {
UChar* word = dictionary[i];
int32_t len = uspoof_getSkeleton(sc, 0, word, -1, NULL, 0, &status);
skeletons[i] = (UChar*) malloc(++len * sizeof(UChar));
status = U_ZERO_ERROR;
uspoof_getSkeleton(sc, 0, word, -1, skeletons[i], len, &status);
}
// Live Check:
{
int32_t len = uspoof_getSkeleton(sc, 0, str, -1, NULL, 0, &status);
UChar* skel = (UChar*) malloc(++len * sizeof(UChar));
status = U_ZERO_ERROR;
uspoof_getSkeleton(sc, 0, str, -1, skel, len, &status);
UBool result = FALSE;
for (size_t i=0; i<DICTIONARY_LENGTH; i++) {
result = u_strcmp(skel, skeletons[i]) == 0;
if (result == TRUE) { break; }
}
// Has confusable in dictionary: 1 (status: U_ZERO_ERROR)
printf("Has confusable in dictionary: %d (status: %s)\n", result, u_errorName(status));
free(skel);
}
for (size_t i=0; i<DICTIONARY_LENGTH; i++) {
free(skeletons[i]);
}

Note: Since the Unicode confusables mapping table is frequently updated, confusable skeletons are not guaranteed to be the same between ICU releases. We therefore recommend that you always compute confusable skeletons at runtime and do not rely on creating a permanent, or difficult to update, database of skeletons.

Spoof Detection

The following snippet shows a minimal example of using USpoofChecker to perform spoof detection on a string:

UChar* str = (UChar*) u"p\u0430ypal"; // with U+0430 CYRILLIC SMALL LETTER A
// Get the default set of allowable characters:
USet* allowed = uset_openEmpty();
USpoofChecker* sc = uspoof_open(&status);
uspoof_setAllowedChars(sc, allowed, &status);
int32_t bitmask = uspoof_check(sc, str, -1, NULL, &status);
UBool result = bitmask != 0;
// fails checks: 1 (status: U_ZERO_ERROR)
printf("fails checks: %d (status: %s)\n", result, u_errorName(status));
uset_close(allowed);

As in the case for confusability checking, it is good practice to create one USpoofChecker instance at startup, and call the cheaper uspoof_check online. We specify the set of allowed characters to be those with type RECOMMENDED or INCLUSION, according to the recommendation in UTS 39.

In addition to uspoof_check, the function uspoof_checkUTF8 is exposed for UTF8-encoded char* strings, and uspoof_checkUnicodeString is exposed for C++ programmers.

If the USPOOF_AUX_INFO check is enabled, a limited amount of information on why a string failed the checks is available in the returned bitmask. For complete information, use the uspoof_check2 class of functions with a USpoofCheckResult parameter:

UChar* str = (UChar*) u"p\u0430ypal"; // with U+0430 CYRILLIC SMALL LETTER A
// Get the default set of allowable characters:
USet* allowed = uset_openEmpty();
USpoofChecker* sc = uspoof_open(&status);
uspoof_setAllowedChars(sc, allowed, &status);
USpoofCheckResult* checkResult = uspoof_openCheckResult(&status);
int32_t bitmask = uspoof_check2(sc, str, -1, checkResult, &status);
int32_t failures1 = bitmask;
int32_t failures2 = uspoof_getCheckResultChecks(checkResult, &status);
assert(failures1 == failures2);
// checks that failed: 0x00000010 (status: U_ZERO_ERROR)
printf("checks that failed: %#010x (status: %s)\n", failures1, u_errorName(status));
// Cleanup:
uset_close(allowed);

C++ users can take advantage of a few syntactical conveniences. The following snippet is functionally equivalent to the one above:

UnicodeString str((UChar*) u"p\u0430ypal"); // with U+0430 CYRILLIC SMALL LETTER A
// Get the default set of allowable characters:
UnicodeSet allowed;
allowed.addAll(*uspoof_getRecommendedUnicodeSet(&status));
allowed.addAll(*uspoof_getInclusionUnicodeSet(&status));
uspoof_setAllowedChars(sc.getAlias(), allowed.toUSet(), &status);
int32_t bitmask = uspoof_check2UnicodeString(sc.getAlias(), str, checkResult.getAlias(), &status);
int32_t failures1 = bitmask;
int32_t failures2 = uspoof_getCheckResultChecks(checkResult.getAlias(), &status);
assert(failures1 == failures2);
// checks that failed: 0x00000010 (status: U_ZERO_ERROR)
printf("checks that failed: %#010x (status: %s)\n", failures1, u_errorName(status));
// Explicit cleanup not necessary.

The return value is a bitmask of the checks that failed. In this case, there was one check that failed: USPOOF_RESTRICTION_LEVEL, corresponding to the fifth bit (16). The possible checks are:

These checks can be enabled independently of each other. For example, if you were interested in checking for only the INVISIBLE and MIXED_NUMBERS conditions, you could do:

UChar* str = (UChar*) u"8\u09EA"; // 8 mixed with U+09EA BENGALI DIGIT FOUR
USpoofChecker* sc = uspoof_open(&status);
int32_t bitmask = uspoof_check2(sc, str, -1, NULL, &status);
UBool result = bitmask != 0;
// fails checks: 1 (status: U_ZERO_ERROR)
printf("fails checks: %d (status: %s)\n", result, u_errorName(status));

Here is an example in C++ showing how to compute the restriction level of a string:

UnicodeString str((UChar*) u"p\u0430ypal"); // with U+0430 CYRILLIC SMALL LETTER A
// Get the default set of allowable characters:
UnicodeSet allowed;
allowed.addAll(*uspoof_getRecommendedUnicodeSet(&status));
allowed.addAll(*uspoof_getInclusionUnicodeSet(&status));
uspoof_setAllowedChars(sc.getAlias(), allowed.toUSet(), &status);
int32_t bitmask = uspoof_check2UnicodeString(sc.getAlias(), str, checkResult.getAlias(), &status);
URestrictionLevel restrictionLevel = uspoof_getCheckResultRestrictionLevel(checkResult.getAlias(), &status);
// Since USPOOF_AUX_INFO was enabled, the restriction level is also available in the upper bits of the bitmask:
assert((restrictionLevel & bitmask) == restrictionLevel);
// Restriction level: 0x50000000 (status: U_ZERO_ERROR)
printf("Restriction level: %#010x (status: %s)\n", restrictionLevel, u_errorName(status));

The code '0x50000000' corresponds to the restriction level USPOOF_MINIMALLY_RESTRICTIVE. Since USPOOF_MINIMALLY_RESTRICTIVE is weaker than USPOOF_MODERATELY_RESTRICTIVE, the string fails the check.

Note: The Restriction Level is the most powerful of the checks. The full logic is documented in UTS 39, but the basic idea is that strings are restricted to contain characters from only a single script, except that most scripts are allowed to have Latin characters interspersed. Although the default restriction level is HIGHLY_RESTRICTIVE, it is recommended that users set their restriction level to MODERATELY_RESTRICTIVE, which allows Latin mixed with all other scripts except Cyrillic, Greek, and Cherokee, with which it is often confusable. For more details on the levels, see UTS 39 or URestrictionLevel. The Restriction Level test is aware of the set of allowed characters set in uspoof_setAllowedChars. Note that characters which have script code COMMON or INHERITED, such as numbers and punctuation, are ignored when computing whether a string has multiple scripts.

Additional Information

A USpoofChecker instance may be used repeatedly to perform checks on any number of identifiers.

Thread Safety: The test functions for checking a single identifier, or for testing whether two identifiers are possible confusable, are thread safe. They may called concurrently, from multiple threads, using the same USpoofChecker instance.

More generally, the standard ICU thread safety rules apply: functions that take a const USpoofChecker parameter are thread safe. Those that take a non-const USpoofChecker are not thread safe..

Stable:
ICU 4.6

Definition in file uspoof.h.

Typedef Documentation

◆ URestrictionLevel

Constants from UAX #39 for use in uspoof_setRestrictionLevel, and for returned identifier restriction levels in check results.

Stable:
ICU 51
See also
uspoof_setRestrictionLevel
uspoof_check

◆ USpoofChecker

typedef struct USpoofChecker USpoofChecker

typedef for C of USpoofChecker

Stable:
ICU 4.2

Definition at line 360 of file uspoof.h.

◆ USpoofCheckResult

See also
uspoof_openCheckResult
Stable:
ICU 58

Definition at line 367 of file uspoof.h.

◆ USpoofChecks

typedef enum USpoofChecks USpoofChecks

Enum for the kinds of checks that USpoofChecker can perform.

These enum values are used both to select the set of checks that will be performed, and to report results from the check function.

Stable:
ICU 4.2

Enumeration Type Documentation

◆ URestrictionLevel

Constants from UAX #39 for use in uspoof_setRestrictionLevel, and for returned identifier restriction levels in check results.

Stable:
ICU 51
See also
uspoof_setRestrictionLevel
uspoof_check
Enumerator
USPOOF_ASCII 

All characters in the string are in the identifier profile and all characters in the string are in the ASCII range.

Stable:
ICU 51
USPOOF_SINGLE_SCRIPT_RESTRICTIVE 

The string classifies as ASCII-Only, or all characters in the string are in the identifier profile and the string is single-script, according to the definition in UTS 39 section 5.1.

Stable:
ICU 53
USPOOF_HIGHLY_RESTRICTIVE 

The string classifies as Single Script, or all characters in the string are in the identifier profile and the string is covered by any of the following sets of scripts, according to the definition in UTS 39 section 5.1:

  • Latin + Han + Bopomofo (or equivalently: Latn + Hanb)
  • Latin + Han + Hiragana + Katakana (or equivalently: Latn + Jpan)
  • Latin + Han + Hangul (or equivalently: Latn +Kore)

This is the default restriction in ICU.

Stable:
ICU 51
USPOOF_MODERATELY_RESTRICTIVE 

The string classifies as Highly Restrictive, or all characters in the string are in the identifier profile and the string is covered by Latin and any one other Recommended or Aspirational script, except Cyrillic, Greek, and Cherokee.

Stable:
ICU 51
USPOOF_MINIMALLY_RESTRICTIVE 

All characters in the string are in the identifier profile.

Allow arbitrary mixtures of scripts.

Stable:
ICU 51
USPOOF_UNRESTRICTIVE 

Any valid identifiers, including characters outside of the Identifier Profile.

Stable:
ICU 51
USPOOF_RESTRICTION_LEVEL_MASK 

Mask for selecting the Restriction Level bits from the return value of uspoof_check.

Stable:
ICU 53
USPOOF_UNDEFINED_RESTRICTIVE 

An undefined restriction level.

Internal:
Do not use. This API is for internal use only.

Definition at line 530 of file uspoof.h.

◆ USpoofChecks

Enum for the kinds of checks that USpoofChecker can perform.

These enum values are used both to select the set of checks that will be performed, and to report results from the check function.

Stable:
ICU 4.2
Enumerator
USPOOF_SINGLE_SCRIPT_CONFUSABLE 

When performing the two-string uspoof_areConfusable test, this flag in the return value indicates that the two strings are visually confusable and that they are from the same script, according to UTS 39 section 4.

See also
uspoof_areConfusable
Stable:
ICU 4.2
USPOOF_MIXED_SCRIPT_CONFUSABLE 

When performing the two-string uspoof_areConfusable test, this flag in the return value indicates that the two strings are visually confusable and that they are not from the same script, according to UTS 39 section 4.

See also
uspoof_areConfusable
Stable:
ICU 4.2
USPOOF_WHOLE_SCRIPT_CONFUSABLE 

When performing the two-string uspoof_areConfusable test, this flag in the return value indicates that the two strings are visually confusable and that they are not from the same script but both of them are single-script strings, according to UTS 39 section 4.

See also
uspoof_areConfusable
Stable:
ICU 4.2
USPOOF_CONFUSABLE 

Enable this flag in uspoof_setChecks to turn on all types of confusables.

You may set the checks to some subset of SINGLE_SCRIPT_CONFUSABLE, MIXED_SCRIPT_CONFUSABLE, or WHOLE_SCRIPT_CONFUSABLE to make uspoof_areConfusable return only those types of confusables.

See also
uspoof_areConfusable
uspoof_getSkeleton
Stable:
ICU 58
USPOOF_ANY_CASE 

This flag is deprecated and no longer affects the behavior of SpoofChecker.

Deprecated:
ICU 58 Any case confusable mappings were removed from UTS 39; the corresponding ICU API was deprecated.
USPOOF_RESTRICTION_LEVEL 

Check that an identifier is no looser than the specified RestrictionLevel.

The default if uspoof_setRestrictionLevel is not called is HIGHLY_RESTRICTIVE.

If USPOOF_AUX_INFO is enabled the actual restriction level of the identifier being tested will also be returned by uspoof_check().

See also
URestrictionLevel
uspoof_setRestrictionLevel
USPOOF_AUX_INFO
Stable:
ICU 51
USPOOF_SINGLE_SCRIPT 

Check that an identifier contains only characters from a single script (plus chars from the common and inherited scripts.) Applies to checks of a single identifier check only.

Deprecated:
ICU 51 Use RESTRICTION_LEVEL instead.
USPOOF_INVISIBLE 

Check an identifier for the presence of invisible characters, such as zero-width spaces, or character sequences that are likely not to display, such as multiple occurrences of the same non-spacing mark.

This check does not test the input string as a whole for conformance to any particular syntax for identifiers.

USPOOF_CHAR_LIMIT 

Check that an identifier contains only characters from a specified set of acceptable characters.

See uspoof_setAllowedChars and uspoof_setAllowedLocales. Note that a string that fails this check will also fail the USPOOF_RESTRICTION_LEVEL check.

USPOOF_MIXED_NUMBERS 

Check that an identifier does not mix numbers from different numbering systems.

For more information, see UTS 39 section 5.3.

Stable:
ICU 51
USPOOF_HIDDEN_OVERLAY 

Check that an identifier does not have a combining character following a character in which that combining character would be hidden; for example 'i' followed by a U+0307 combining dot.

More specifically, the following characters are forbidden from preceding a U+0307:

  • Those with the Soft_Dotted Unicode property (which includes 'i' and 'j')
  • Latin lowercase letter 'l'
  • Dotless 'i' and 'j' ('ı' and 'È·', U+0131 and U+0237)
  • Any character whose confusable prototype ends with such a character (Soft_Dotted, 'l', 'ı', or 'È·')

In addition, combining characters are allowed between the above characters and U+0307 except those with combining class 0 or combining class "Above" (230, same class as U+0307).

This list and the number of combing characters considered by this check may grow over time.

Draft:
This API may be changed in the future versions and was introduced in ICU 62
USPOOF_ALL_CHECKS 

Enable all spoof checks.

Stable:
ICU 4.6
USPOOF_AUX_INFO 

Enable the return of auxillary (non-error) information in the upper bits of the check results value.

If this "check" is not enabled, the results of uspoof_check will be zero when an identifier passes all of the enabled checks.

If this "check" is enabled, (uspoof_check() & USPOOF_ALL_CHECKS) will be zero when an identifier passes all checks.

Stable:
ICU 51

Definition at line 376 of file uspoof.h.

Function Documentation

◆ uspoof_areConfusable()

U_STABLE int32_t U_EXPORT2 uspoof_areConfusable ( const USpoofChecker sc,
const UChar id1,
int32_t  length1,
const UChar id2,
int32_t  length2,
UErrorCode status 
)

Check the whether two specified strings are visually confusable.

If the strings are confusable, the return value will be nonzero, as long as USPOOF_CONFUSABLE was enabled in uspoof_setChecks().

The bits in the return value correspond to flags for each of the classes of confusables applicable to the two input strings. According to UTS 39 section 4, the possible flags are:

If one or more of the above flags were not listed in uspoof_setChecks(), this function will never report that class of confusable. The check USPOOF_CONFUSABLE enables all three flags.

Parameters
scThe USpoofChecker
id1The first of the two identifiers to be compared for confusability. The strings are in UTF-16 format.
length1the length of the first identifer, expressed in 16 bit UTF-16 code units, or -1 if the string is nul terminated.
id2The second of the two identifiers to be compared for confusability. The identifiers are in UTF-16 format.
length2The length of the second identifiers, expressed in 16 bit UTF-16 code units, or -1 if the string is nul terminated.
statusThe error code, set if an error occurred while attempting to perform the check. Confusability of the identifiers is not reported here, but through this function's return value.
Returns
An integer value with bit(s) set corresponding to the type of confusability found, as defined by enum USpoofChecks. Zero is returned if the identifiers are not confusable.
Stable:
ICU 4.2

◆ uspoof_areConfusableUnicodeString()

U_STABLE int32_t U_EXPORT2 uspoof_areConfusableUnicodeString ( const USpoofChecker sc,
const icu::UnicodeString s1,
const icu::UnicodeString s2,
UErrorCode status 
)

A version of uspoof_areConfusable accepting UnicodeStrings.

Parameters
scThe USpoofChecker
s1The first of the two identifiers to be compared for confusability. The strings are in UTF-8 format.
s2The second of the two identifiers to be compared for confusability. The strings are in UTF-8 format.
statusThe error code, set if an error occurred while attempting to perform the check. Confusability of the identifiers is not reported here, but through this function's return value.
Returns
An integer value with bit(s) set corresponding to the type of confusability found, as defined by enum USpoofChecks. Zero is returned if the identifiers are not confusable.
Stable:
ICU 4.2
See also
uspoof_areConfusable

◆ uspoof_areConfusableUTF8()

U_STABLE int32_t U_EXPORT2 uspoof_areConfusableUTF8 ( const USpoofChecker sc,
const char *  id1,
int32_t  length1,
const char *  id2,
int32_t  length2,
UErrorCode status 
)

A version of uspoof_areConfusable accepting strings in UTF-8 format.

Parameters
scThe USpoofChecker
id1The first of the two identifiers to be compared for confusability. The strings are in UTF-8 format.
length1the length of the first identifiers, in bytes, or -1 if the string is nul terminated.
id2The second of the two identifiers to be compared for confusability. The strings are in UTF-8 format.
length2The length of the second string in bytes, or -1 if the string is nul terminated.
statusThe error code, set if an error occurred while attempting to perform the check. Confusability of the strings is not reported here, but through this function's return value.
Returns
An integer value with bit(s) set corresponding to the type of confusability found, as defined by enum USpoofChecks. Zero is returned if the strings are not confusable.
Stable:
ICU 4.2
See also
uspoof_areConfusable

◆ uspoof_check()

U_STABLE int32_t U_EXPORT2 uspoof_check ( const USpoofChecker sc,
const UChar id,
int32_t  length,
int32_t *  position,
UErrorCode status 
)

Check the specified string for possible security issues.

The text to be checked will typically be an identifier of some sort. The set of checks to be performed is specified with uspoof_setChecks().

Note
Consider using the newer API, uspoof_check2, instead. The newer API exposes additional information from the check procedure and is otherwise identical to this method.
Parameters
scThe USpoofChecker
idThe identifier to be checked for possible security issues, in UTF-16 format.
lengththe length of the string to be checked, expressed in 16 bit UTF-16 code units, or -1 if the string is zero terminated.
positionDeprecated in ICU 51. Always returns zero. Originally, an out parameter for the index of the first string position that failed a check. This parameter may be NULL.
statusThe error code, set if an error occurred while attempting to perform the check. Spoofing or security issues detected with the input string are not reported here, but through the function's return value.
Returns
An integer value with bits set for any potential security or spoofing issues detected. The bits are defined by enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) will be zero if the input string passes all of the enabled checks.
See also
uspoof_check2
Stable:
ICU 4.2

◆ uspoof_check2()

U_STABLE int32_t U_EXPORT2 uspoof_check2 ( const USpoofChecker sc,
const UChar id,
int32_t  length,
USpoofCheckResult checkResult,
UErrorCode status 
)

Check the specified string for possible security issues.

The text to be checked will typically be an identifier of some sort. The set of checks to be performed is specified with uspoof_setChecks().

Parameters
scThe USpoofChecker
idThe identifier to be checked for possible security issues, in UTF-16 format.
lengththe length of the string to be checked, or -1 if the string is zero terminated.
checkResultAn instance of USpoofCheckResult to be filled with details about the identifier. Can be NULL.
statusThe error code, set if an error occurred while attempting to perform the check. Spoofing or security issues detected with the input string are not reported here, but through the function's return value.
Returns
An integer value with bits set for any potential security or spoofing issues detected. The bits are defined by enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) will be zero if the input string passes all of the enabled checks. Any information in this bitmask will be consistent with the information saved in the optional checkResult parameter.
See also
uspoof_openCheckResult
uspoof_check2UTF8
uspoof_check2UnicodeString
Stable:
ICU 58

◆ uspoof_check2UnicodeString()

U_STABLE int32_t U_EXPORT2 uspoof_check2UnicodeString ( const USpoofChecker sc,
const icu::UnicodeString id,
USpoofCheckResult checkResult,
UErrorCode status 
)

Check the specified string for possible security issues.

The text to be checked will typically be an identifier of some sort. The set of checks to be performed is specified with uspoof_setChecks().

Parameters
scThe USpoofChecker
idA identifier to be checked for possible security issues.
checkResultAn instance of USpoofCheckResult to be filled with details about the identifier. Can be NULL.
statusThe error code, set if an error occurred while attempting to perform the check. Spoofing or security issues detected with the input string are not reported here, but through the function's return value.
Returns
An integer value with bits set for any potential security or spoofing issues detected. The bits are defined by enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) will be zero if the input string passes all of the enabled checks. Any information in this bitmask will be consistent with the information saved in the optional checkResult parameter.
See also
uspoof_openCheckResult
uspoof_check2
uspoof_check2UTF8
Stable:
ICU 58

◆ uspoof_check2UTF8()

U_STABLE int32_t U_EXPORT2 uspoof_check2UTF8 ( const USpoofChecker sc,
const char *  id,
int32_t  length,
USpoofCheckResult checkResult,
UErrorCode status 
)

Check the specified string for possible security issues.

The text to be checked will typically be an identifier of some sort. The set of checks to be performed is specified with uspoof_setChecks().

This version of uspoof_check accepts a USpoofCheckResult, which returns additional information about the identifier. For more information, see uspoof_openCheckResult.

Parameters
scThe USpoofChecker
idA identifier to be checked for possible security issues, in UTF8 format.
lengththe length of the string to be checked, or -1 if the string is zero terminated.
checkResultAn instance of USpoofCheckResult to be filled with details about the identifier. Can be NULL.
statusThe error code, set if an error occurred while attempting to perform the check. Spoofing or security issues detected with the input string are not reported here, but through the function's return value.
Returns
An integer value with bits set for any potential security or spoofing issues detected. The bits are defined by enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) will be zero if the input string passes all of the enabled checks. Any information in this bitmask will be consistent with the information saved in the optional checkResult parameter.
See also
uspoof_openCheckResult
uspoof_check2
uspoof_check2UnicodeString
Stable:
ICU 58

◆ uspoof_checkUnicodeString()

U_STABLE int32_t U_EXPORT2 uspoof_checkUnicodeString ( const USpoofChecker sc,
const icu::UnicodeString id,
int32_t *  position,
UErrorCode status 
)

Check the specified string for possible security issues.

The text to be checked will typically be an identifier of some sort. The set of checks to be performed is specified with uspoof_setChecks().

Note
Consider using the newer API, uspoof_check2UnicodeString, instead. The newer API exposes additional information from the check procedure and is otherwise identical to this method.
Parameters
scThe USpoofChecker
idA identifier to be checked for possible security issues.
positionDeprecated in ICU 51. Always returns zero. Originally, an out parameter for the index of the first string position that failed a check. This parameter may be NULL.
statusThe error code, set if an error occurred while attempting to perform the check. Spoofing or security issues detected with the input string are not reported here, but through the function's return value.
Returns
An integer value with bits set for any potential security or spoofing issues detected. The bits are defined by enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) will be zero if the input string passes all of the enabled checks.
See also
uspoof_check2UnicodeString
Stable:
ICU 4.2

◆ uspoof_checkUTF8()

U_STABLE int32_t U_EXPORT2 uspoof_checkUTF8 ( const USpoofChecker sc,
const char *  id,
int32_t  length,
int32_t *  position,
UErrorCode status 
)

Check the specified string for possible security issues.

The text to be checked will typically be an identifier of some sort. The set of checks to be performed is specified with uspoof_setChecks().

Note
Consider using the newer API, uspoof_check2UTF8, instead. The newer API exposes additional information from the check procedure and is otherwise identical to this method.
Parameters
scThe USpoofChecker
idA identifier to be checked for possible security issues, in UTF8 format.
lengththe length of the string to be checked, or -1 if the string is zero terminated.
positionDeprecated in ICU 51. Always returns zero. Originally, an out parameter for the index of the first string position that failed a check. This parameter may be NULL.
statusThe error code, set if an error occurred while attempting to perform the check. Spoofing or security issues detected with the input string are not reported here, but through the function's return value. If the input contains invalid UTF-8 sequences, a status of U_INVALID_CHAR_FOUND will be returned.
Returns
An integer value with bits set for any potential security or spoofing issues detected. The bits are defined by enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) will be zero if the input string passes all of the enabled checks.
See also
uspoof_check2UTF8
Stable:
ICU 4.2

◆ uspoof_clone()

USpoofChecker* uspoof_clone ( const USpoofChecker sc,
UErrorCode status 
)

Clone a Spoof Checker.

The clone will be set to perform the same checks as the original source.

Parameters
scThe source USpoofChecker
statusThe error code, set if this function encounters a problem.
Returns
Stable:
ICU 4.2

◆ uspoof_close()

void uspoof_close ( USpoofChecker sc)

Close a Spoof Checker, freeing any memory that was being held by its implementation.

Stable:
ICU 4.2

◆ uspoof_closeCheckResult()

U_STABLE void U_EXPORT2 uspoof_closeCheckResult ( USpoofCheckResult checkResult)

Close a USpoofCheckResult, freeing any memory that was being held by its implementation.

Parameters
checkResultThe instance of USpoofCheckResult to close
Stable:
ICU 58

◆ uspoof_getAllowedChars()

U_STABLE const USet* U_EXPORT2 uspoof_getAllowedChars ( const USpoofChecker sc,
UErrorCode status 
)

Get a USet for the characters permitted in an identifier.

This corresponds to the limits imposed by the Set Allowed Characters functions. Limitations imposed by other checks will not be reflected in the set returned by this function.

The returned set will be frozen, meaning that it cannot be modified by the caller.

Ownership of the returned set remains with the Spoof Detector. The returned set will become invalid if the spoof detector is closed, or if a new set of allowed characters is specified.

Parameters
scThe USpoofChecker
statusThe error code, set if this function encounters a problem.
Returns
A USet containing the characters that are permitted by the USPOOF_CHAR_LIMIT test.
Stable:
ICU 4.2

◆ uspoof_getAllowedLocales()

U_STABLE const char* U_EXPORT2 uspoof_getAllowedLocales ( USpoofChecker sc,
UErrorCode status 
)

Get a list of locales for the scripts that are acceptable in strings to be checked.

If no limitations on scripts have been specified, an empty string will be returned.

uspoof_setAllowedChars() will reset the list of allowed to be empty.

The format of the returned list is the same as that supplied to uspoof_setAllowedLocales(), but returned list may not be identical to the originally specified string; the string may be reformatted, and information other than languages from the originally specified locales may be omitted.

Parameters
scThe USpoofChecker
statusThe error code, set if this function encounters a problem.
Returns
A string containing a list of locales corresponding to the acceptable scripts, formatted like an HTTP Accept Language value.
Stable:
ICU 4.2

◆ uspoof_getAllowedUnicodeSet()

U_STABLE const icu::UnicodeSet* U_EXPORT2 uspoof_getAllowedUnicodeSet ( const USpoofChecker sc,
UErrorCode status 
)

Get a UnicodeSet for the characters permitted in an identifier.

This corresponds to the limits imposed by the Set Allowed Characters / UnicodeSet functions. Limitations imposed by other checks will not be reflected in the set returned by this function.

The returned set will be frozen, meaning that it cannot be modified by the caller.

Ownership of the returned set remains with the Spoof Detector. The returned set will become invalid if the spoof detector is closed, or if a new set of allowed characters is specified.

Parameters
scThe USpoofChecker
statusThe error code, set if this function encounters a problem.
Returns
A UnicodeSet containing the characters that are permitted by the USPOOF_CHAR_LIMIT test.
Stable:
ICU 4.2

◆ uspoof_getCheckResultChecks()

U_NAMESPACE_END U_STABLE int32_t U_EXPORT2 uspoof_getCheckResultChecks ( const USpoofCheckResult checkResult,
UErrorCode status 
)

Indicates which of the spoof check(s) have failed.

The value is a bitwise OR of the constants for the tests in question: USPOOF_RESTRICTION_LEVEL, USPOOF_CHAR_LIMIT, and so on.

Parameters
checkResultThe instance of USpoofCheckResult created by uspoof_openCheckResult
statusThe error code, set if an error occurred.
Returns
An integer value with bits set for any potential security or spoofing issues detected. The bits are defined by enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) will be zero if the input string passes all of the enabled checks.
See also
uspoof_setChecks
Stable:
ICU 58

◆ uspoof_getCheckResultNumerics()

U_STABLE const USet* U_EXPORT2 uspoof_getCheckResultNumerics ( const USpoofCheckResult checkResult,
UErrorCode status 
)

Gets the set of numerics found in the string, if the USPOOF_MIXED_NUMBERS check was enabled; otherwise, undefined.

The set will contain the zero digit from each decimal number system found in the input string. Ownership of the returned USet remains with the USpoofCheckResult. The USet will be free'd when uspoof_closeCheckResult is called.

Parameters
checkResultThe instance of USpoofCheckResult created by uspoof_openCheckResult
Returns
The set of numerics contained in the USpoofCheckResult
Parameters
statusThe error code, set if an error occurred.
Stable:
ICU 58

◆ uspoof_getCheckResultRestrictionLevel()

U_STABLE URestrictionLevel U_EXPORT2 uspoof_getCheckResultRestrictionLevel ( const USpoofCheckResult checkResult,
UErrorCode status 
)

Gets the restriction level that the text meets, if the USPOOF_RESTRICTION_LEVEL check was enabled; otherwise, undefined.

Parameters
checkResultThe instance of USpoofCheckResult created by uspoof_openCheckResult
statusThe error code, set if an error occurred.
Returns
The restriction level contained in the USpoofCheckResult
See also
uspoof_setRestrictionLevel
Stable:
ICU 58

◆ uspoof_getChecks()

U_STABLE int32_t U_EXPORT2 uspoof_getChecks ( const USpoofChecker sc,
UErrorCode status 
)

Get the set of checks that this Spoof Checker has been configured to perform.

Parameters
scThe USpoofChecker
statusThe error code, set if this function encounters a problem.
Returns
The set of checks that this spoof checker will perform. The value is a bit set, obtained by OR-ing together values from enum USpoofChecks.
Stable:
ICU 4.2

◆ uspoof_getInclusionSet()

U_STABLE const USet* U_EXPORT2 uspoof_getInclusionSet ( UErrorCode status)

Get the set of Candidate Characters for Inclusion in Identifiers, as defined in http://unicode.org/Public/security/latest/xidmodifications.txt and documented in http://www.unicode.org/reports/tr39/, Unicode Security Mechanisms.

The returned set is frozen. Ownership of the set remains with the ICU library; it must not be deleted by the caller.

Parameters
statusThe error code, set if a problem occurs while creating the set.
Stable:
ICU 51

◆ uspoof_getInclusionUnicodeSet()

U_STABLE const icu::UnicodeSet* U_EXPORT2 uspoof_getInclusionUnicodeSet ( UErrorCode status)

Get the set of Candidate Characters for Inclusion in Identifiers, as defined in http://unicode.org/Public/security/latest/xidmodifications.txt and documented in http://www.unicode.org/reports/tr39/, Unicode Security Mechanisms.

The returned set is frozen. Ownership of the set remains with the ICU library; it must not be deleted by the caller.

Parameters
statusThe error code, set if a problem occurs while creating the set.
Stable:
ICU 51

◆ uspoof_getRecommendedSet()

U_STABLE const USet* U_EXPORT2 uspoof_getRecommendedSet ( UErrorCode status)

Get the set of characters from Recommended Scripts for Inclusion in Identifiers, as defined in http://unicode.org/Public/security/latest/xidmodifications.txt and documented in http://www.unicode.org/reports/tr39/, Unicode Security Mechanisms.

The returned set is frozen. Ownership of the set remains with the ICU library; it must not be deleted by the caller.

Parameters
statusThe error code, set if a problem occurs while creating the set.
Stable:
ICU 51

◆ uspoof_getRecommendedUnicodeSet()

U_STABLE const icu::UnicodeSet* U_EXPORT2 uspoof_getRecommendedUnicodeSet ( UErrorCode status)

Get the set of characters from Recommended Scripts for Inclusion in Identifiers, as defined in http://unicode.org/Public/security/latest/xidmodifications.txt and documented in http://www.unicode.org/reports/tr39/, Unicode Security Mechanisms.

The returned set is frozen. Ownership of the set remains with the ICU library; it must not be deleted by the caller.

Parameters
statusThe error code, set if a problem occurs while creating the set.
Stable:
ICU 51

◆ uspoof_getRestrictionLevel()

U_STABLE URestrictionLevel U_EXPORT2 uspoof_getRestrictionLevel ( const USpoofChecker sc)

Get the Restriction Level that will be tested if the checks include USPOOF_RESTRICTION_LEVEL.

Returns
The restriction level
See also
URestrictionLevel
Stable:
ICU 51

◆ uspoof_getSkeleton()

U_STABLE int32_t U_EXPORT2 uspoof_getSkeleton ( const USpoofChecker sc,
uint32_t  type,
const UChar id,
int32_t  length,
UChar dest,
int32_t  destCapacity,
UErrorCode status 
)

Get the "skeleton" for an identifier.

Skeletons are a transformation of the input identifier; Two identifiers are confusable if their skeletons are identical. See Unicode UAX #39 for additional information.

Using skeletons directly makes it possible to quickly check whether an identifier is confusable with any of some large set of existing identifiers, by creating an efficiently searchable collection of the skeletons.

Parameters
scThe USpoofChecker
typeDeprecated in ICU 58. You may pass any number. Originally, controlled which of the Unicode confusable data tables to use.
idThe input identifier whose skeleton will be computed.
lengthThe length of the input identifier, expressed in 16 bit UTF-16 code units, or -1 if the string is zero terminated.
destThe output buffer, to receive the skeleton string.
destCapacityThe length of the output buffer, in 16 bit units. The destCapacity may be zero, in which case the function will return the actual length of the skeleton.
statusThe error code, set if an error occurred while attempting to perform the check.
Returns
The length of the skeleton string. The returned length is always that of the complete skeleton, even when the supplied buffer is too small (or of zero length)
Stable:
ICU 4.2
See also
uspoof_areConfusable

◆ uspoof_getSkeletonUnicodeString()

U_I18N_API icu::UnicodeString& U_EXPORT2 uspoof_getSkeletonUnicodeString ( const USpoofChecker sc,
uint32_t  type,
const icu::UnicodeString id,
icu::UnicodeString dest,
UErrorCode status 
)

Get the "skeleton" for an identifier.

Skeletons are a transformation of the input identifier; Two identifiers are confusable if their skeletons are identical. See Unicode UAX #39 for additional information.

Using skeletons directly makes it possible to quickly check whether an identifier is confusable with any of some large set of existing identifiers, by creating an efficiently searchable collection of the skeletons.

Parameters
scThe USpoofChecker.
typeDeprecated in ICU 58. You may pass any number. Originally, controlled which of the Unicode confusable data tables to use.
idThe input identifier whose skeleton will be computed.
destThe output identifier, to receive the skeleton string.
statusThe error code, set if an error occurred while attempting to perform the check.
Returns
A reference to the destination (skeleton) string.
Stable:
ICU 4.2

◆ uspoof_getSkeletonUTF8()

U_STABLE int32_t U_EXPORT2 uspoof_getSkeletonUTF8 ( const USpoofChecker sc,
uint32_t  type,
const char *  id,
int32_t  length,
char *  dest,
int32_t  destCapacity,
UErrorCode status 
)

Get the "skeleton" for an identifier.

Skeletons are a transformation of the input identifier; Two identifiers are confusable if their skeletons are identical. See Unicode UAX #39 for additional information.

Using skeletons directly makes it possible to quickly check whether an identifier is confusable with any of some large set of existing identifiers, by creating an efficiently searchable collection of the skeletons.

Parameters
scThe USpoofChecker
typeDeprecated in ICU 58. You may pass any number. Originally, controlled which of the Unicode confusable data tables to use.
idThe UTF-8 format identifier whose skeleton will be computed.
lengthThe length of the input string, in bytes, or -1 if the string is zero terminated.
destThe output buffer, to receive the skeleton string.
destCapacityThe length of the output buffer, in bytes. The destCapacity may be zero, in which case the function will return the actual length of the skeleton.
statusThe error code, set if an error occurred while attempting to perform the check. Possible Errors include U_INVALID_CHAR_FOUND for invalid UTF-8 sequences, and U_BUFFER_OVERFLOW_ERROR if the destination buffer is too small to hold the complete skeleton.
Returns
The length of the skeleton string, in bytes. The returned length is always that of the complete skeleton, even when the supplied buffer is too small (or of zero length)
Stable:
ICU 4.2

◆ uspoof_open()

USpoofChecker* uspoof_open ( UErrorCode status)

Create a Unicode Spoof Checker, configured to perform all checks except for USPOOF_LOCALE_LIMIT and USPOOF_CHAR_LIMIT.

Note that additional checks may be added in the future, resulting in the changes to the default checking behavior.

Parameters
statusThe error code, set if this function encounters a problem.
Returns
the newly created Spoof Checker
Stable:
ICU 4.2

◆ uspoof_openCheckResult()

U_STABLE USpoofCheckResult* U_EXPORT2 uspoof_openCheckResult ( UErrorCode status)

Create a USpoofCheckResult, used by the uspoof_check2 class of functions to return information about the identifier.

Information includes:

  • A bitmask of the checks that failed
  • The identifier's restriction level (UTS 39 section 5.2)
  • The set of numerics in the string (UTS 39 section 5.3)

The data held in a USpoofCheckResult is cleared whenever it is passed into a new call of uspoof_check2.

Parameters
statusThe error code, set if this function encounters a problem.
Returns
the newly created USpoofCheckResult
See also
uspoof_check2
uspoof_check2UTF8
uspoof_check2UnicodeString
Stable:
ICU 58

◆ uspoof_openFromSerialized()

USpoofChecker* uspoof_openFromSerialized ( const void *  data,
int32_t  length,
int32_t *  pActualLength,
UErrorCode pErrorCode 
)

Open a Spoof checker from its serialized form, stored in 32-bit-aligned memory.

Inverse of uspoof_serialize(). The memory containing the serialized data must remain valid and unchanged as long as the spoof checker, or any cloned copies of the spoof checker, are in use. Ownership of the memory remains with the caller. The spoof checker (and any clones) must be closed prior to deleting the serialized data.

Parameters
dataa pointer to 32-bit-aligned memory containing the serialized form of spoof data
lengththe number of bytes available at data; can be more than necessary
pActualLengthreceives the actual number of bytes at data taken up by the data; can be NULL
pErrorCodeICU error code
Returns
the spoof checker.
See also
uspoof_open
uspoof_serialize
Stable:
ICU 4.2

◆ uspoof_openFromSource()

USpoofChecker* uspoof_openFromSource ( const char *  confusables,
int32_t  confusablesLen,
const char *  confusablesWholeScript,
int32_t  confusablesWholeScriptLen,
int32_t *  errType,
UParseError pe,
UErrorCode status 
)

Open a Spoof Checker from the source form of the spoof data.

The input corresponds to the Unicode data file confusables.txt as described in Unicode UAX #39. The syntax of the source data is as described in UAX #39 for this file, and the content of this file is acceptable input.

The character encoding of the (char *) input text is UTF-8.

Parameters
confusablesa pointer to the confusable characters definitions, as found in file confusables.txt from unicode.org.
confusablesLenThe length of the confusables text, or -1 if the input string is zero terminated.
confusablesWholeScriptDeprecated in ICU 58. No longer used.
confusablesWholeScriptLenDeprecated in ICU 58. No longer used.
errTypeIn the event of an error in the input, indicates which of the input files contains the error. The value is one of USPOOF_SINGLE_SCRIPT_CONFUSABLE or USPOOF_WHOLE_SCRIPT_CONFUSABLE, or zero if no errors are found.
peIn the event of an error in the input, receives the position in the input text (line, offset) of the error.
statusan in/out ICU UErrorCode. Among the possible errors is U_PARSE_ERROR, which is used to report syntax errors in the input.
Returns
A spoof checker that uses the rules from the input files.
Stable:
ICU 4.2

◆ uspoof_serialize()

U_STABLE int32_t U_EXPORT2 uspoof_serialize ( USpoofChecker sc,
void *  data,
int32_t  capacity,
UErrorCode status 
)

Serialize the data for a spoof detector into a chunk of memory.

The flattened spoof detection tables can later be used to efficiently instantiate a new Spoof Detector.

The serialized spoof checker includes only the data compiled from the Unicode data tables by uspoof_openFromSource(); it does not include include any other state or configuration that may have been set.

Parameters
scthe Spoof Detector whose data is to be serialized.
dataa pointer to 32-bit-aligned memory to be filled with the data, can be NULL if capacity==0
capacitythe number of bytes available at data, or 0 for preflighting
statusan in/out ICU UErrorCode; possible errors include:
  • U_BUFFER_OVERFLOW_ERROR if the data storage block is too small for serialization
  • U_ILLEGAL_ARGUMENT_ERROR the data or capacity parameters are bad
Returns
the number of bytes written or needed for the spoof data
See also
utrie2_openFromSerialized()
Stable:
ICU 4.2

◆ uspoof_setAllowedChars()

U_STABLE void U_EXPORT2 uspoof_setAllowedChars ( USpoofChecker sc,
const USet chars,
UErrorCode status 
)

Limit the acceptable characters to those specified by a Unicode Set.

Any previously specified character limit is is replaced by the new settings. This includes limits on characters that were set with the uspoof_setAllowedLocales() function.

The USPOOF_CHAR_LIMIT test is automatically enabled for this USpoofChecker by this function.

Parameters
scThe USpoofChecker
charsA Unicode Set containing the list of characters that are permitted. Ownership of the set remains with the caller. The incoming set is cloned by this function, so there are no restrictions on modifying or deleting the USet after calling this function.
statusThe error code, set if this function encounters a problem.
Stable:
ICU 4.2

◆ uspoof_setAllowedLocales()

U_STABLE void U_EXPORT2 uspoof_setAllowedLocales ( USpoofChecker sc,
const char *  localesList,
UErrorCode status 
)

Limit characters that are acceptable in identifiers being checked to those normally used with the languages associated with the specified locales.

Any previously specified list of locales is replaced by the new settings.

A set of languages is determined from the locale(s), and from those a set of acceptable Unicode scripts is determined. Characters from this set of scripts, along with characters from the "common" and "inherited" Unicode Script categories will be permitted.

Supplying an empty string removes all restrictions; characters from any script will be allowed.

The USPOOF_CHAR_LIMIT test is automatically enabled for this USpoofChecker when calling this function with a non-empty list of locales.

The Unicode Set of characters that will be allowed is accessible via the uspoof_getAllowedChars() function. uspoof_setAllowedLocales() will replace any previously applied set of allowed characters.

Adjustments, such as additions or deletions of certain classes of characters, can be made to the result of uspoof_setAllowedLocales() by fetching the resulting set with uspoof_getAllowedChars(), manipulating it with the Unicode Set API, then resetting the spoof detectors limits with uspoof_setAllowedChars().

Parameters
scThe USpoofChecker
localesListA list list of locales, from which the language and associated script are extracted. The locales are comma-separated if there is more than one. White space may not appear within an individual locale, but is ignored otherwise. The locales are syntactically like those from the HTTP Accept-Language header. If the localesList is empty, no restrictions will be placed on the allowed characters.
statusThe error code, set if this function encounters a problem.
Stable:
ICU 4.2

◆ uspoof_setAllowedUnicodeSet()

U_STABLE void U_EXPORT2 uspoof_setAllowedUnicodeSet ( USpoofChecker sc,
const icu::UnicodeSet chars,
UErrorCode status 
)

Limit the acceptable characters to those specified by a Unicode Set.

Any previously specified character limit is is replaced by the new settings. This includes limits on characters that were set with the uspoof_setAllowedLocales() function.

The USPOOF_CHAR_LIMIT test is automatically enabled for this USoofChecker by this function.

Parameters
scThe USpoofChecker
charsA Unicode Set containing the list of characters that are permitted. Ownership of the set remains with the caller. The incoming set is cloned by this function, so there are no restrictions on modifying or deleting the UnicodeSet after calling this function.
statusThe error code, set if this function encounters a problem.
Stable:
ICU 4.2

◆ uspoof_setChecks()

U_STABLE void U_EXPORT2 uspoof_setChecks ( USpoofChecker sc,
int32_t  checks,
UErrorCode status 
)

Specify the bitmask of checks that will be performed by uspoof_check.

Calling this method overwrites any checks that may have already been enabled. By default, all checks are enabled.

To enable specific checks and disable all others, the "whitelisted" checks should be ORed together. For example, to fail strings containing characters outside of the set specified by uspoof_setAllowedChars and also strings that contain digits from mixed numbering systems:

 

To disable specific checks and enable all others, the "blacklisted" checks should be ANDed away from ALL_CHECKS. For example, if you are not planning to use the uspoof_areConfusable functionality, it is good practice to disable the CONFUSABLE check:

 

Note that methods such as uspoof_setAllowedChars, uspoof_setAllowedLocales, and uspoof_setRestrictionLevel will enable certain checks when called. Those methods will OR the check they enable onto the existing bitmask specified by this method. For more details, see the documentation of those methods.

Parameters
scThe USpoofChecker
checksThe set of checks that this spoof checker will perform. The value is a bit set, obtained by OR-ing together values from enum USpoofChecks.
statusThe error code, set if this function encounters a problem.
Stable:
ICU 4.2

◆ uspoof_setRestrictionLevel()

U_STABLE void U_EXPORT2 uspoof_setRestrictionLevel ( USpoofChecker sc,
URestrictionLevel  restrictionLevel 
)

Set the loosest restriction level allowed for strings.

The default if this is not called is USPOOF_HIGHLY_RESTRICTIVE. Calling this method enables the USPOOF_RESTRICTION_LEVEL and USPOOF_MIXED_NUMBERS checks, corresponding to Sections 5.1 and 5.2 of UTS 39. To customize which checks are to be performed by uspoof_check, see uspoof_setChecks.

Parameters
scThe USpoofChecker
restrictionLevelThe loosest restriction level allowed.
See also
URestrictionLevel
Stable:
ICU 51