Cocoa Objective-C Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

Objective-C Examples

Bounced Email
Digital Certificates
Digital Signatures
DKIM / DomainKey
DSA
Email Object
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
POP3
RSA
MIME
SMTP
Socket
SOCKS Proxy
Spider
SSH Key
SSH
SFTP
Tar
Upload
XML
XMP
Zip


More Examples...
Amazon S3
NTLM
RSS
Atom
PPMD
Deflate
Bzip2
LZW
Diffie-Hellman
Bz2
Character Encoding
CSV

 

 

 

 

 

 

 

 

RSA Encrypt/Decrypt AES Key

Demonstrates how to use RSA to protect a key for AES encryption. It can be used in this scenario: You will provide your RSA public key to any number of counterparts. Your counterpart will generate an AES key, encrypt data (or a file) using it, then encrypt the AES key using your RSA public key. Your counterpart sends you both the encrypted data and the encrypted key. Since you are the only one with access to the RSA private key, only you can decrypt the AES key. You decrypt the key, then decrypt the data using the AES key.

This example will show the entire process. (1) Generate an RSA key and save both private and public parts to PEM files. (2) Encrypt a file using a randomly generated AES encryption key. (3) RSA encrypt the AES key. (4) RSA decrypt the AES key. (5) Use it to AES decrypt the file or data.

Download: Chilkat Cocoa Objective-C Libraries

NSMutableString *strOutput = [NSMutableString stringWithCapacity:1000];

// 
//   This example requires two Chilkat licenses:  RSA and Crypt.
// 

//  ------------------
//  Step 1.  Generate an RSA key and save to PEM files.

CkoRsa *rsa = [[[CkoRsa alloc] init] autorelease];

BOOL success;
success = [rsa UnlockComponent: @"Anything for 30-day trial"];
if (success != YES) {
    [strOutput appendString: rsa.LastErrorText];
    [strOutput appendString: @"\n"];
    self.mainTextField.stringValue = strOutput;
    return;
}

//  Generate a 1024-bit key.  Chilkat RSA supports
//  key sizes ranging from 512 bits to 4096 bits.
success = [rsa GenerateKey: [NSNumber numberWithInt: 1024]];
if (success != YES) {
    [strOutput appendString: rsa.LastErrorText];
    [strOutput appendString: @"\n"];
    self.mainTextField.stringValue = strOutput;
    return;
}

//  Keys are exported in XML format:
NSString *pubKeyXml;
pubKeyXml = [rsa ExportPublicKey];

CkoPublicKey *pubKey = [[[CkoPublicKey alloc] init] autorelease];
success = [pubKey LoadXml: pubKeyXml];
//  For brevity, we are not checking the return value...
success = [pubKey SaveOpenSslPemFile: @"pubKey.pem"];

NSString *privKeyXml;
privKeyXml = [rsa ExportPrivateKey];

CkoPrivateKey *privKey = [[[CkoPrivateKey alloc] init] autorelease];
success = [privKey LoadXml: privKeyXml];
success = [privKey SaveRsaPemFile: @"privKey.pem"];

//  Other methods exist for saving the private key in PKCS8 format,
//  both encrypted and un-encrypted..

//  ------------------
//  Step 2.   This is the code your counterpart will run to
//  AES encrypt a file.  It generates a random AES key
//  to use for the encryption.

CkoCrypt2 *crypt = [[[CkoCrypt2 alloc] init] autorelease];

success = [crypt UnlockComponent: @"Anything for 30-day trial"];
if (success != YES) {
    [strOutput appendString: crypt.LastErrorText];
    [strOutput appendString: @"\n"];
    self.mainTextField.stringValue = strOutput;
    return;
}

crypt.CryptAlgorithm = @"aes";
crypt.CipherMode = @"cbc";
crypt.KeyLength = [NSNumber numberWithInt:256];

//  Generate random bytes and return the random bytes
//  in a hex string:
crypt.EncodingMode = @"hex";
NSString *randomKey;
randomKey = [crypt GenRandomBytesENC: [NSNumber numberWithInt: 32]];

//  Set the key.
[crypt SetEncodedKey: randomKey encoding: @"hex"];

//  Set the IV to a known value that will be used on both sides.
//  (If desired, you could generate a random IV and protect it in the same
//  way as the key...)
//  The length of the IV for AES is always 16 bytes, regardless of the key size.
[crypt SetEncodedIV: @"000102030405060708090A0B0C0D0E0F" encoding: @"hex"];

//  AES Encrypt the file (the file may be any size because it will
//  stream the file in/out.
success = [crypt CkEncryptFile: @"hamlet.xml" outFile: @"aesEncrypted.dat"];
if (success != YES) {
    [strOutput appendString: crypt.LastErrorText];
    [strOutput appendString: @"\n"];
    self.mainTextField.stringValue = strOutput;
    return;
}

//  ------------------
//  Step 3.
//  ------------------
//  RSA encrypt the AES key.
//  We'll pretend  your counter part has the public-key PEM file and needs
//  to load it.  Therefore, we'll start with a new RSA object and load
//  the public key from the PEM..
CkoRsa *rsa2 = [[[CkoRsa alloc] init] autorelease];
CkoPublicKey *pubKey2 = [[[CkoPublicKey alloc] init] autorelease];

//  For brevity, don't check the success..
success = [pubKey2 LoadOpenSslPemFile: @"pubKey.pem"];
pubKeyXml = [pubKey2 GetXml];
success = [rsa2 ImportPublicKey: pubKeyXml];

//  RSA encrypt the AES key and return it as a base64 encoded string.
rsa2.EncodingMode = @"base64";
BOOL bUsePrivateKey;
bUsePrivateKey = NO;
NSString *encryptedAesKey;
encryptedAesKey = [rsa2 EncryptStringENC: randomKey bUsePrivateKey: bUsePrivateKey];

//  At this point, your counterpart sends you the encryptedAesKey,
//  and the encrypted file.

//  ------------------
//  Step 4 - RSA decrypt the AES key.
//  ------------------

//  Start with a new RSA object and load the private key from the PEM.
CkoRsa *rsa3 = [[[CkoRsa alloc] init] autorelease];
CkoPrivateKey *privKey2 = [[[CkoPrivateKey alloc] init] autorelease];

success = [privKey2 LoadPemFile: @"privKey.pem"];
privKeyXml = [privKey2 GetXml];
success = [rsa3 ImportPrivateKey: privKeyXml];

//  The encrypted AES key is encoded using base64, so set
//  our EncodingMode to "base64".
rsa3.EncodingMode = @"base64";

bUsePrivateKey = YES;
NSString *decryptedAesKey;
decryptedAesKey = [rsa3 DecryptStringENC: encryptedAesKey bUsePrivateKey: bUsePrivateKey];

//  ------------------
//  Step 5 - AES decrypt the file.
//  ------------------

CkoCrypt2 *crypt2 = [[[CkoCrypt2 alloc] init] autorelease];

crypt2.CryptAlgorithm = @"aes";
crypt2.CipherMode = @"cbc";
crypt2.KeyLength = [NSNumber numberWithInt:256];

//  Set the key.
[crypt2 SetEncodedKey: decryptedAesKey encoding: @"hex"];

//  Set the IV
[crypt2 SetEncodedIV: @"000102030405060708090A0B0C0D0E0F" encoding: @"hex"];

//  AES Decrypt the file (the file may be any size because it will
//  stream the file in/out.
success = [crypt2 CkDecryptFile: @"aesEncrypted.dat" outFile: @"decrypted.xml"];
if (success != YES) {
    [strOutput appendString: crypt2.LastErrorText];
    [strOutput appendString: @"\n"];
    self.mainTextField.stringValue = strOutput;
    return;
}


self.mainTextField.stringValue = strOutput;



© 2000-2013 Chilkat Software, Inc. All Rights Reserved.