The scenario is like this i have two applications. Application A is an encrypting application which encrypts files. Application B is a decrypting application which will decrypt the file encrypted by A.
The key is generated randomly. Now the problem is as the key is generated randomly, I don't want to store the key in a text file. I want to store the key embedded in app b, which would require either having a class value of b being modified by app a or modifying a resource neither of which I am able to find a way to do.
Can anybody help me with this about how to accomplish this?
Thanks