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

  • Home
  • SEARCH
  • 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 196401
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:45:51+00:00 2026-05-11T16:45:51+00:00

I am developing Iphone application. I have used SecKeyGeneratePair method of Security/Security.h framework. I

  • 0

I am developing Iphone application. I have used SecKeyGeneratePair method of Security/Security.h framework. I am getting public & private keys as SecKeyRef objects. Can I access the key or print its value to console? Can I get NSString or NSData object from it ? When i print the key to console using NSLog I am getting . Can we pass these key objects over network to other application which might be in java? Can we encrypt some text in iphone application, send it to server, using the key sent decrypt the text on server side ?

Edited to add
Thanks Alex Reynolds for your quick response. In case of RSA Encryption first I have to generate a key pair which is in the form of SecKeyRef objects. Then we will pass that reference to SecKeyEncrypt & SecKeyDecrypt methods. when i encrypt & decrypt locally it is working perfect but if i try to send the key & encrypted data to server & decrypt at server(java implementation) side, I am not able to pass the SecKeyRef object to server as a key value. In java we have to get the string in string or byte array format to pass to the encryption method. Can we get the access to the data stored in object SecKeyRef (which is NSCFType object)? which is a struct __SecKey.

  • 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-05-11T16:45:51+00:00Added an answer on May 11, 2026 at 4:45 pm

    Consider using NSData to get the string value, and perhaps use Base64 or some other form of encoding when passing over the network (and then decoding from Base64 to whatever in Java).

    Here’s an example of some code that might help you get started. I’m doing a HMAC-SHA1 signature (‘digest’) here, but the general idea is the same for your RSA case:

    #import <Foundation/NSString.h>
    #import <CommonCrypto/CommonHMAC.h>
    #import <CommonCrypto/CommonDigest.h>
    
    @interface NSString (NSStringAdditions)
    
    + (NSString *) base64StringFromData:(NSData *)data length:(int)length;
    - (NSString *) base64StringWithHMACSHA1Digest:(NSString *)secretKey;
    
    @end
    
    -------------------------------------------
    
    #import "NSStringAdditions.h"
    
    static char base64EncodingTable[64] = {
      'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
      'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
      'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
      'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'
    };
    
    @implementation NSString (NSStringAdditions)
    
    - (NSString *) base64StringWithHMACSHA1Digest:(NSString *)secretKey {
      unsigned char digest[CC_SHA1_DIGEST_LENGTH];
      char *keyCharPtr = strdup([secretKey UTF8String]);
      char *dataCharPtr = strdup([self UTF8String]);
    
      CCHmacContext hctx;
      CCHmacInit(&hctx, kCCHmacAlgSHA1, keyCharPtr, strlen(keyCharPtr));
      CCHmacUpdate(&hctx, dataCharPtr, strlen(dataCharPtr));
      CCHmacFinal(&hctx, digest);
      NSData *encryptedStringData = [NSData dataWithBytes:digest length:CC_SHA1_DIGEST_LENGTH];
    
      free(keyCharPtr);
      free(dataCharPtr);
    
      return [NSString base64StringFromData:encryptedStringData length:[encryptedStringData length]];
    }
    
    + (NSString *) base64StringFromData: (NSData *)data length: (int)length {
      unsigned long ixtext, lentext;
      long ctremaining;
      unsigned char input[3], output[4];
      short i, charsonline = 0, ctcopy;
      const unsigned char *raw;
      NSMutableString *result;
    
      lentext = [data length]; 
      if (lentext < 1)
        return @"";
      result = [NSMutableString stringWithCapacity: lentext];
      raw = [data bytes];
      ixtext = 0; 
    
      while (true) {
        ctremaining = lentext - ixtext;
        if (ctremaining <= 0) 
           break;        
        for (i = 0; i < 3; i++) { 
           unsigned long ix = ixtext + i;
           if (ix < lentext)
              input[i] = raw[ix];
           else
              input[i] = 0;
        }
        output[0] = (input[0] & 0xFC) >> 2;
        output[1] = ((input[0] & 0x03) << 4) | ((input[1] & 0xF0) >> 4);
        output[2] = ((input[1] & 0x0F) << 2) | ((input[2] & 0xC0) >> 6);
        output[3] = input[2] & 0x3F;
        ctcopy = 4;
    
        switch (ctremaining) {
          case 1: 
             ctcopy = 2; 
             break;
          case 2: 
             ctcopy = 3; 
             break;
        }
    
        for (i = 0; i < ctcopy; i++)
           [result appendString: [NSString stringWithFormat: @"%c", base64EncodingTable[output[i]]]];
    
        for (i = ctcopy; i < 4; i++)
           [result appendString: @"="];
    
        ixtext += 3;
        charsonline += 4;
    
        if ((length > 0) && (charsonline >= length))
          charsonline = 0;
    
        return result;
     }
    
     @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 205k
  • Answers 205k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The top 100 results probably don't match "luton*, and get… May 12, 2026 at 9:02 pm
  • Editorial Team
    Editorial Team added an answer I think you are confusing 2 concepts: Java args refers… May 12, 2026 at 9:02 pm
  • Editorial Team
    Editorial Team added an answer Depending on whether you want to edit a throwaway code… May 12, 2026 at 9:02 pm

Related Questions

i am developing an iphone application in which i want to apply table view
I've got a problem in my database - somehow changes sometimes are not being
I have just started developing iPhone applications and I am very confused by how
I am developing an iPhone application using Objective-C. I want to access a data

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.