Library for encrypting and decrypting resources

My question is related to the following questions.

Basically the application that I create has some mp3 resources that I wanted to protect. There is also a library that runs on android for encryption, and then decrypts resources, especially mp3 files.

Thanks.

+4
source share
1 answer

Keep in mind that any encryption method you use must store a key to decrypt encrypted data. This key should be available for your application and, therefore, for everyone who has access to your application. By encrypting the data, you change the problem of hiding your data in the problem of hiding your key, and there is practically no around it. The most you can do is make your data more difficult to read, but it cannot be impossible to read if you do not run your application on a trusted computing platform, as I said in my answer to the previous question .

+6
source

Source: https://habr.com/ru/post/1343351/


All Articles