I am working on an application in which I will get the public key for the user from our server. Once I have this, I need to do RSA encryption using the public key. The public key received from the server is Base64 encoded.
How to load a public key in iOS KeyChain so that I can perform RSA cryptographic functions with it? Downloading the certificate seems trivial, but the original public keys do not.
source
share