Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7754041
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:12:28+00:00 2026-06-01T12:12:28+00:00

I am converting a UIImage to NSData. Now I need to encrypt that NSData

  • 0

I am converting a UIImage to NSData. Now I need to encrypt that NSData using a public key and I need to decrypt using a private key. Please provide a step by step procedure. Which algorithm do I need to use? Is there any good library for encryption and decryption? Also provide some code snippet for encryption and decryption.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T12:12:29+00:00Added an answer on June 1, 2026 at 12:12 pm

    I have tried RSA Encryption and Decryption for NSString and you may well modify it and make it work for NSData

    Add Security.Framework to your project bundle.

    ViewController.h code is as follows:

    #import <UIKit/UIKit.h>
    #import <Security/Security.h>
    
    @interface ViewController : UIViewController
    {
    SecKeyRef publicKey;
    SecKeyRef privateKey;
        NSData *publicTag;
        NSData *privateTag;
    }
    - (void)encryptWithPublicKey:(uint8_t *)plainBuffer cipherBuffer:(uint8_t *)cipherBuffer;
    - (void)decryptWithPrivateKey:(uint8_t *)cipherBuffer plainBuffer:(uint8_t *)plainBuffer;
    - (SecKeyRef)getPublicKeyRef;
    - (SecKeyRef)getPrivateKeyRef;
    - (void)testAsymmetricEncryptionAndDecryption;
    - (void)generateKeyPair:(NSUInteger)keySize;
    @end
    

    ViewController.m file code is as follows:

    #import "ViewController.h"
    
    const size_t BUFFER_SIZE = 64;
    const size_t CIPHER_BUFFER_SIZE = 1024;
    const uint32_t PADDING = kSecPaddingNone;
    static const UInt8 publicKeyIdentifier[] = "com.apple.sample.publickey";
    static const UInt8 privateKeyIdentifier[] = "com.apple.sample.privatekey";
    
    @implementation ViewController
    
    -(SecKeyRef)getPublicKeyRef { 
    
        OSStatus sanityCheck = noErr; 
        SecKeyRef publicKeyReference = NULL;
    
        if (publicKeyReference == NULL) { 
            [self generateKeyPair:512];
                    NSMutableDictionary *queryPublicKey = [[NSMutableDictionary alloc] init];
    
            // Set the public key query dictionary.
            [queryPublicKey setObject:(__bridge id)kSecClassKey forKey:(__bridge id)kSecClass];
            [queryPublicKey setObject:publicTag forKey:(__bridge id)kSecAttrApplicationTag];
            [queryPublicKey setObject:(__bridge id)kSecAttrKeyTypeRSA forKey:(__bridge id)kSecAttrKeyType];
            [queryPublicKey setObject:[NSNumber numberWithBool:YES] forKey:(__bridge id)kSecReturnRef];
    
    
            // Get the key.
            sanityCheck = SecItemCopyMatching((__bridge CFDictionaryRef)queryPublicKey, (CFTypeRef *)&publicKeyReference);
    
    
            if (sanityCheck != noErr)
            {
                publicKeyReference = NULL;
            }
    
    
    //        [queryPublicKey release];
    
        } else { publicKeyReference = publicKey; }
    
        return publicKeyReference; }
    
    - (void)didReceiveMemoryWarning
    {
        [super didReceiveMemoryWarning];
        // Release any cached data, images, etc that aren't in use.
    }
    
    
    
    
    - (void)testAsymmetricEncryptionAndDecryption {
    
        uint8_t *plainBuffer;
        uint8_t *cipherBuffer;
        uint8_t *decryptedBuffer;
    
    
    
        const char inputString[] = "How to Encrypt data with public key and Decrypt data with private key";
        int len = strlen(inputString);
        // TODO: this is a hack since i know inputString length will be less than BUFFER_SIZE
        if (len > BUFFER_SIZE) len = BUFFER_SIZE-1;
    
        plainBuffer = (uint8_t *)calloc(BUFFER_SIZE, sizeof(uint8_t));
        cipherBuffer = (uint8_t *)calloc(CIPHER_BUFFER_SIZE, sizeof(uint8_t));
        decryptedBuffer = (uint8_t *)calloc(BUFFER_SIZE, sizeof(uint8_t));
    
        strncpy( (char *)plainBuffer, inputString, len);
    
        NSLog(@"init() plainBuffer: %s", plainBuffer);
        //NSLog(@"init(): sizeof(plainBuffer): %d", sizeof(plainBuffer));
        [self encryptWithPublicKey:(UInt8 *)plainBuffer cipherBuffer:cipherBuffer];
        NSLog(@"encrypted data: %s", cipherBuffer);
        //NSLog(@"init(): sizeof(cipherBuffer): %d", sizeof(cipherBuffer));
        [self decryptWithPrivateKey:cipherBuffer plainBuffer:decryptedBuffer];
        NSLog(@"decrypted data: %s", decryptedBuffer);
        //NSLog(@"init(): sizeof(decryptedBuffer): %d", sizeof(decryptedBuffer));
        NSLog(@"====== /second test =======================================");
    
        free(plainBuffer);
        free(cipherBuffer);
        free(decryptedBuffer);
    }
    
    /* Borrowed from:
     * https://developer.apple.com/library/mac/#documentation/security/conceptual/CertKeyTrustProgGuide/iPhone_Tasks/iPhone_Tasks.html
     */
    - (void)encryptWithPublicKey:(uint8_t *)plainBuffer cipherBuffer:(uint8_t *)cipherBuffer
    {
    
        NSLog(@"== encryptWithPublicKey()");
    
        OSStatus status = noErr;
    
        NSLog(@"** original plain text 0: %s", plainBuffer);
    
        size_t plainBufferSize = strlen((char *)plainBuffer);
        size_t cipherBufferSize = CIPHER_BUFFER_SIZE;
    
        NSLog(@"SecKeyGetBlockSize() public = %lu", SecKeyGetBlockSize([self getPublicKeyRef]));
        //  Error handling
        // Encrypt using the public.
        status = SecKeyEncrypt([self getPublicKeyRef],
                               PADDING,
                               plainBuffer,
                               plainBufferSize,
                               &cipherBuffer[0],
                               &cipherBufferSize
                               );
        NSLog(@"encryption result code: %ld (size: %lu)", status, cipherBufferSize);
        NSLog(@"encrypted text: %s", cipherBuffer);
    }
    
    - (void)decryptWithPrivateKey:(uint8_t *)cipherBuffer plainBuffer:(uint8_t *)plainBuffer
    {
        OSStatus status = noErr;
    
        size_t cipherBufferSize = strlen((char *)cipherBuffer);
    
        NSLog(@"decryptWithPrivateKey: length of buffer: %lu", BUFFER_SIZE);
        NSLog(@"decryptWithPrivateKey: length of input: %lu", cipherBufferSize);
    
        // DECRYPTION
        size_t plainBufferSize = BUFFER_SIZE;
    
        //  Error handling
        status = SecKeyDecrypt([self getPrivateKeyRef],
                               PADDING,
                               &cipherBuffer[0],
                               cipherBufferSize,
                               &plainBuffer[0],
                               &plainBufferSize
                               );
        NSLog(@"decryption result code: %ld (size: %lu)", status, plainBufferSize);
        NSLog(@"FINAL decrypted text: %s", plainBuffer);
    
    }
    
    
    
    - (SecKeyRef)getPrivateKeyRef {
        OSStatus resultCode = noErr;
        SecKeyRef privateKeyReference = NULL;
    //    NSData *privateTag = [NSData dataWithBytes:@"ABCD" length:strlen((const char *)@"ABCD")];
    //    if(privateKey == NULL) {
            [self generateKeyPair:512];
            NSMutableDictionary * queryPrivateKey = [[NSMutableDictionary alloc] init];
    
            // Set the private key query dictionary.
            [queryPrivateKey setObject:(__bridge id)kSecClassKey forKey:(__bridge id)kSecClass];
            [queryPrivateKey setObject:privateTag forKey:(__bridge id)kSecAttrApplicationTag];
            [queryPrivateKey setObject:(__bridge id)kSecAttrKeyTypeRSA forKey:(__bridge id)kSecAttrKeyType];
            [queryPrivateKey setObject:[NSNumber numberWithBool:YES] forKey:(__bridge id)kSecReturnRef];
    
            // Get the key.
            resultCode = SecItemCopyMatching((__bridge CFDictionaryRef)queryPrivateKey, (CFTypeRef *)&privateKeyReference);
            NSLog(@"getPrivateKey: result code: %ld", resultCode);
    
            if(resultCode != noErr)
            {
                privateKeyReference = NULL;
            }
    
    //        [queryPrivateKey release];
    //    } else {
    //        privateKeyReference = privateKey;
    //    }
    
        return privateKeyReference;
    }
    
    
    #pragma mark - View lifecycle
    
    
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
    }
    
    - (void)viewDidUnload
    {
        [super viewDidUnload];
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    }
    
    - (void)viewWillAppear:(BOOL)animated
    {
        [super viewWillAppear:animated];
        privateTag = [[NSData alloc] initWithBytes:privateKeyIdentifier length:sizeof(privateKeyIdentifier)];
        publicTag = [[NSData alloc] initWithBytes:publicKeyIdentifier length:sizeof(publicKeyIdentifier)];
        [self testAsymmetricEncryptionAndDecryption];
    
    }
    
    - (void)viewDidAppear:(BOOL)animated
    {
        [super viewDidAppear:animated];
    }
    
    - (void)viewWillDisappear:(BOOL)animated
    {
        [super viewWillDisappear:animated];
    }
    
    - (void)viewDidDisappear:(BOOL)animated
    {
        [super viewDidDisappear:animated];
    }
    
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
        // Return YES for supported orientations
        if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
            return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
        } else {
            return YES;
        }
    }
    
    - (void)generateKeyPair:(NSUInteger)keySize {
        OSStatus sanityCheck = noErr;
        publicKey = NULL;
        privateKey = NULL;
    
    //  LOGGING_FACILITY1( keySize == 512 || keySize == 1024 || keySize == 2048, @"%d is an invalid and unsupported key size.", keySize );
    
        // First delete current keys.
    //  [self deleteAsymmetricKeys];
    
        // Container dictionaries.
        NSMutableDictionary * privateKeyAttr = [[NSMutableDictionary alloc] init];
        NSMutableDictionary * publicKeyAttr = [[NSMutableDictionary alloc] init];
        NSMutableDictionary * keyPairAttr = [[NSMutableDictionary alloc] init];
    
        // Set top level dictionary for the keypair.
        [keyPairAttr setObject:(__bridge id)kSecAttrKeyTypeRSA forKey:(__bridge id)kSecAttrKeyType];
        [keyPairAttr setObject:[NSNumber numberWithUnsignedInteger:keySize] forKey:(__bridge id)kSecAttrKeySizeInBits];
    
        // Set the private key dictionary.
        [privateKeyAttr setObject:[NSNumber numberWithBool:YES] forKey:(__bridge id)kSecAttrIsPermanent];
        [privateKeyAttr setObject:privateTag forKey:(__bridge id)kSecAttrApplicationTag];
        // See SecKey.h to set other flag values.
    
        // Set the public key dictionary.
        [publicKeyAttr setObject:[NSNumber numberWithBool:YES] forKey:(__bridge id)kSecAttrIsPermanent];
        [publicKeyAttr setObject:publicTag forKey:(__bridge id)kSecAttrApplicationTag];
        // See SecKey.h to set other flag values.
    
        // Set attributes to top level dictionary.
        [keyPairAttr setObject:privateKeyAttr forKey:(__bridge id)kSecPrivateKeyAttrs];
        [keyPairAttr setObject:publicKeyAttr forKey:(__bridge id)kSecPublicKeyAttrs];
    
        // SecKeyGeneratePair returns the SecKeyRefs just for educational purposes.
        sanityCheck = SecKeyGeneratePair((__bridge CFDictionaryRef)keyPairAttr, &publicKey, &privateKey);
    //  LOGGING_FACILITY( sanityCheck == noErr && publicKey != NULL && privateKey != NULL, @"Something really bad went wrong with generating the key pair." );
        if(sanityCheck == noErr  && publicKey != NULL && privateKey != NULL)
        {
            NSLog(@"Successful");
        }
    //  [privateKeyAttr release];
    //  [publicKeyAttr release];
    //  [keyPairAttr release];
    }
    
    
    @end
    

    Let me know if you need more help.

    Hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using following function for converting an NSString to an image. -(UIImage *)imageFromText:(NSString
I am converting image to NSdata using UIImageJPEGRepresentation(image, 1.0) and then encoding it to
Converting my current code project to TDD, I've noticed something. class Foo { public
Converting to ODB.NET from System.Data.OracleClient and need help converting my connection string. Here is
Converting a C++ string to a char array is pretty straightorward using the c_str
Converting dates/times into ticks using the PowerShell Get-Date applet is simple. However, how do
Converting WSDL to C# classes using microsoft net wsdl.exe tool but the tool is
Converting large static site to Drupal 6.2 Page urls are now aliased like folder/
IN converting over a legacy application we need to convert named query to nhibernate.
While converting types, I have found myself using both VB functions and BCL Convert.To*

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.