How to protect Digital Content (PDF) inside my iOS app?

后端 未结 4 2130
后悔当初
后悔当初 2021-02-09 06:08

This question is mainly about protecting the content inside my iOS app. I intend to make an app that will download a lot of content (mainly PDF files) on user request. Once thes

4条回答
  •  南方客
    南方客 (楼主)
    2021-02-09 06:50

    Take look at this article: http://aptogo.co.uk/2010/07/protecting-resources/

    The author details encrypting app bundle resources, and then decrypting the files into memory so only the scrambled version ever resides on disk.

    They use a custom NSURLProtocol for encrypting on the fly. Pretty nice summary.

提交回复
热议问题