Definition
What is resource protection?
Resource protection is a technique that secures the non-code assets embedded in an application. Most applications ship with bundled resources: images, data files, configuration, templates, and more.
By default these resources sit inside the application package in their original form. Anyone who unpacks the package can extract them, read them, and even swap them for modified versions.
Resource protection encrypts and compresses those embedded resources. They are stored in protected form and decrypted only at runtime when the application needs them, so they cannot be extracted or tampered with from the package.
