How to protect fonts and encrypt them dynamically?

1.4k Views Asked by At

If I want to embed custom fonts in my application I have to protect them at least in some way because the license requires this. So I cannot do something like

Typeface.createFromAsset(getAssets(),"fonts/myAwesomeFont.ttf");

On iOS is used this approach that decrypts a font on the fly and makes it available in the application. Is there a similar approach possible on Android?

My hunch is using a singleton class that handles the decryption of the raw resource file and returns the typeface on demand as I set it in code on the views. Are there better approaches out there that I missed? *Is this even possible?*

2

There are 2 best solutions below

3
On BEST ANSWER

Is there a similar approach possible on Android?

Not really.

My hunch is using a singleton class that handles the decryption of the raw resource file and returns the typeface on demand as I set it in code on the views

That is not possible, as there is no way for you to create a Typeface from some byte array or stream.

You are welcome to decrypt the font file and store it locally unencrypted, then use that. Whether this is sufficient for your license terms is a question for your attorney.

0
On

you can do one thing...

encrypt your original font file using File I/O streams and save encrypted file in Assets. and when your App is installed,
then get the encrypted file using

getAssets().open(fileName);

and decrypt stream and store decrypted file (original font file) in your Appication private path for first time . and use this file for creating Typeface every time where ever you need... using

Typeface.createFromFile(File);

so your APK will contain encrypted file...