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

后端 未结 4 2125
后悔当初
后悔当初 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:59

    Let's assume that you somehow scramble your PDF before putting it on your download server and the app descrambles it before showing it to the user.

    In the app you can then perform the following:

    1. Load the scrambled PDF file into an NSData object.
    2. Make an NSMutableData object and descramble your PDF data into that buffer using whatever algorithm you have chosen.
    3. Now you have a usable PDF document in memory but only a scrambled version on disk. If you need to create a CGPDFDocumentRef you can do that by first creating a dataprovider using your descrambled NSMutableData object which is toll-free bridged to CFData by a simple cast

    Something like

    NSMutableData *data = descrambled PDF;
    CFDataRef myPDFData = (CFDataRef)data;
    CGDataProviderRef provider = CGDataProviderCreateWithCFData(myPDFData);
    CGPDFDocumentRef pdf = CGPDFDocumentCreateWithProvider(provider);
    

    (Credit for that snippet goes to this answer.)

    Since the app must be able to descramble the PDF and user has access to both the app and the scrambled PDF file anything you do to prevent them from extracting it will basically amount to security by obscurity. Therefore I wouldn't bother with a complex encryption algorithm. You can probably just do something simple like XOR the data with a secret string hidden in your app binary.

    Defeating this approach will require an attacker to disassemble your binary, and if someone is that determined you can't win, as evidenced by the sad state of current video game DRM.

    By the way: In the spirit of obscurity you might also want to name your scrambled downloaded PDFs something less obvious than valuabledocument.pdf. But real security it ain't.

    Edit to illustrate XOR'ing data:

    Feed your scrambled NSData to something like this...

    // Fill this out with whatever you want. Use the same string
    // and algorithm to scramble the files on the server.
    static unsigned char secretString[SECRET_STRING_LENGTH];
    
    - (NSData *)scrambleOrDescrambleData:(NSData*)input
    {
        unsigned char *outputBytes = malloc(input.length);
        memcpy(outputBytes, input.bytes, input.length);
        for (int i = 0; i < input.length; i++)
        {
            outputBytes[i] = outputBytes[i] ^ secretString[i % SECRET_STRING_LENGTH];
        }
    
        NSData *outputData = [[NSData alloc] initWithBytes:outputBytes length:input.length];
        free(outputBytes);
    
        return outputData;
    }
    

    The handy thing about XOR is that doing it twice will give you back your original data, so scrambling and descrambling is the same code.

    I am avoiding the term encryption here, because this is really just obfuscating the data to keep it from casual observers.

提交回复
热议问题