Documentation

Go to Portal Website

Encrypt Unicode Strings

PlanPlatformsMASVS
TeamiOSMASVS-RESILIENCE-3

Overview

Encrypt Unicode Strings protects supported UTF-16 and wide-string content in protected iOS builds. Use it when customer-facing text, localized values, identifiers, API paths, feature labels, or sensitive non-ASCII strings should not be readable through simple binary inspection.

This control complements Encrypt Strings. Encrypt Strings covers general string literals across Android and iOS, while Encrypt Unicode Strings focuses on iOS string formats that are commonly exposed as UTF-16 content.

How It Works

During protected build creation, AppTego identifies supported Unicode string content in the iOS artifact and stores it in an encrypted form. The protected app restores the value only when the app needs it at runtime, so normal app behavior is preserved while static inspection produces encrypted data instead of readable text.

The control is applied during the build pipeline. Changing it requires creating a new protected build and validating the resulting IPA.

How to Enable the Control

Navigate to Code Obfuscation from the AppTego portal, and expand the Code And String Protection section. Under this section you will find the Encrypt Unicode Strings control. Click Enable to apply it to the next protected build.

API Configuration Example

{
  "EncryptUStrings": {
    "protection": true
  }
}
FieldPurpose
protectionEnables encrypt unicode strings for protected builds.

Use When

Use caseWhy it helps
Localized appsReduces readable localized strings that may expose features, routes, or internal workflow names.
Sensitive customer copyKeeps regulated, support, or enforcement wording out of simple string dumps.
High-value iOS appsAdds another layer of resistance for teams already using symbol and metadata reduction.
Non-ASCII string contentProtects string forms that may not be covered by basic ASCII-focused inspection.

Rollout Guidance

  1. Enable the control in Development.
  2. Build a protected IPA.
  3. Test launch, login, localization, feature flags, support copy, and any screens that render dynamic or translated text.
  4. Validate crash reporting, analytics, and support diagnostics still show the information your team needs.
  5. Promote to Staging and Production only after QA verifies the protected build on physical devices.

Compatibility Notes

Support Matrix

PlatformSupported VersionsNotes
AndroidNot supportedUse Encrypt Strings for Android string protection.
iOSAll versionsProtects supported UTF-16 and wide-string content during protected build processing.