Lets say I want to encrypt and decrypt texts in my application. Encryption of course uses 'salt',"passphrase"...
How can I securely store it in the app so that people who decompile it won't see it? As you may know you can decompile .net code into perfectly fine source code. So any variable with password can be seen. Any code that creates password can be seen too.
How can you store static passwords so crackers can't get them in RAM or by decompiling the app?