Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a TCP socket server and I want to do the following w/o using SSL:

  1. On server, make RSA key pair (I know how to do this using openssl's crypto library)
  2. On server, send the public key to iphone and keep the private key.
  3. On client(iphone), want to encrypt a message using the public key, using SecKeyEncrypt.
  4. On server, decrypt the message.

The message is short enough so that the PKCS1 padded result fits into 128 bytes.

I don't know how to do 2~4. Anyone knows?

share|improve this question
Not a question as far as I can see. – GregS Nov 18 '10 at 3:44
Sorry Greg. I just added a question. – Stanley 시크 Yeo Nov 18 '10 at 3:53
This won't be secure without SSL; it will be subject to a man in the middle attack. – cobbal Nov 18 '10 at 4:03
Thanks cobbal. I know about that. I am not trying to do those above for security related reason. – Stanley 시크 Yeo Nov 18 '10 at 4:08
If it's not for security reasons, then why are you encrypting data? Sounds like an XY problem: you think that you should be using RSA encryption, and have a problem implementing it, but from the information that you provide later it becomes clear that you really have another problem. – MSalters Nov 19 '10 at 9:25
show 1 more comment

2 Answers

up vote 8 down vote accepted

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:

  1. 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).
  2. Your plain text string is shorter than the block size in cipherBufferLength, else you'll need to split it into blocks of that size.
  3. 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!";
    }
}
share|improve this answer
1  
+1 for "Free the Security Framework Five!" – rob5408 Nov 19 '12 at 16:15

Well, I guess you would need to publish your public key to the outside world (the iPhone in your case). To do the best way is to publish a certificate conatining your public key, and the iPhone app can download it. Then the iPhone application can utilize the principle of PGP to encrypt the data with a symmetric algo (like AES) and encrypt the symmetric with the public key. The application in the server would receive the message, decrypt the symmetric key with its private key, and the then decrypt the encrypted data with the symmetric key thus obtained.

But as cobbal said, anyone can intercept the message in between the server and the iPhone and can change it, and the server would not know if its has 'actually' recieved the data from the iPHone, unless you sign it using an SSL certificate (i.e. encrypt the hash of the method with the private key of the iPhone).

My suggestion is, use availale third party application rather than doing it yourself, as they might be some falw in tghe implementation. PGP is a public available library, u can use.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.