This should do what you're asking - it encrypts data with the server's public key. It's a slimmed down version of what I'm using in my app. It's not subject to MITM attacks, unless the attacker has a copy of your private key and its password (communicating via non-SSL, however, still is, but the data you encrypt with the server's legit public key will be nearly impossible to decrypt).
Security in iOS is very poorly documented. I cobbled this together from Apple's docs, this site, the Apple developer forums and probably elsewhere. So thanks to everyone I cribbed code from! This code assumes several things:
- You've already generated your RSA key pairs (I'm using a 4096-bit key and it seems speedy enough) and, using the private key, created a DER-encoded certificate called "cert.cer" that you put in your resource bundle (obviously, you can also download the cert from your server). By default, OpenSSL generates a PEM encoded cert, so you have to convert it with "openssl x509 -in cert.pem -inform PEM -out cert.cer -outform DER". iOS will barf on PEM. The reason I use a cert is it's actually easier to work with, and is supported in iOS. Using just the public key isn't (though it can be done).
- Your plain text string is shorter than the block size in cipherBufferLength, else you'll need to split it into blocks of that size.
- You've added Security.framework to your project and you #import <Security/Security.h>.
My CoreFoundation and C-foo are not so good, so suggestions for improvement are welcome.
/* ---- 1 ---- Start with a fixed array of chars...*/
const uint8_t plainText[] = "Please encrypt me!!";
int length = (size_t)(sizeof(plainText)/sizeof(plainText[0]));
/* ---- 1 ---- */
/* ....OR.... */
/* ---- 2 ---- Get it from an NSString...*/
NSData *inputData = [@"Please encrypt me!!" dataUsingEncoding:NSUTF8StringEncoding];
const void *bytes = [inputData bytes];
/* in case inputData is released before we're done... */
int length = [inputData length];
uint8_t *plainText = malloc(length);
memcpy(plainText, bytes, length);
/* ---- 2 ---- */
/* Open and parse the cert*/
NSData *certData = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"cert" ofType:@"cer"]];
SecCertificateRef cert = SecCertificateCreateWithData(kCFAllocatorDefault, (CFDataRef)certData);
SecPolicyRef policy = SecPolicyCreateBasicX509();
SecTrustRef trust;
OSStatus status = SecTrustCreateWithCertificates(cert, policy, &trust);
/* You can ignore the SecTrustResultType, but you have to run SecTrustEvaluate
* before you can get the public key */
SecTrustResultType trustResult;
if (status == noErr) {
status = SecTrustEvaluate(trust, &trustResult);
}
/* Now grab the public key from the cert */
SecKeyRef publicKey = SecTrustCopyPublicKey(trust);
/* allocate a buffer to hold the cipher text */
size_t cipherBufferSize;
uint8_t *cipherBuffer;
cipherBufferSize = SecKeyGetBlockSize(publicKey);
cipherBuffer = malloc(cipherBufferSize);
/* encrypt!! */
SecKeyEncrypt(publicKey, kSecPaddingPKCS1, plainText, length, cipherBuffer, &cipherBufferSize);
/* Do something with your cipher text...like convert it to an NSData object,
base64 encode it and send it to your server. Check here for some good b64
routines: https://github.com/mikeho/QSUtilities/blob/master/QSStrings.m
*/
NSData *d = [NSData dataWithBytes:cipherBuffer length:cipherBufferSize];
// Sendy stuff here - ASIHTTPRequest libraries are a good choice
/* Free the Security Framework Five! */
CFRelease(cert);
CFRelease(policy);
CFRelease(trust);
CFRelease(publicKey);
free(cipherBuffer);
/* And this guy if you used #2 above (got your plain text from an NSString) */
free(plainText);
To have the server decrypt your cipher text, here some PHP code (assumes your PHP is built with the OpenSSL extension):
function decryptText() {
$privateKey = openssl_pkey_get_private("file:///some/absolute/path/to/privkey.pem");
if (isset($_REQUEST['cryptText'])) {
$cryptText = $_REQUEST['cryptText'];
if (openssl_private_decrypt(base64_decode($cryptText), $plainText, $privateKey)) {
echo $plainText;
} else {
echo "impossible to decrypt!";
}
} else {
echo "nothing to decrypt!";
}
}