I am working on a project where I need to encrypt/decrypt some data locally. I am using RNCryptor for the encryption and decryption process. To do that I need to use key, i don't want to define that key from app side like:
NSString *password = @"Secret password";
Is there any way to define the key using any property from keychain so that I can use the same key without defining it in code base.