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 6703855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:13:15+00:00 2026-05-26T07:13:15+00:00

I have this method to make a xor between 2 NSStrings, i´m printing the

  • 0

I have this method to make a xor between 2 NSStrings, i´m printing the result on NSLog but it isn´t the expect.
Can´t figure out what i´m doing wrong.

(void)XorSecretKeyDeviceId   
{   
NSString* secretKey = @"123";//
NSString* deviceId = @"abcdef";//

NSData* stringKey = [secretKey dataUsingEncoding:NSUTF8StringEncoding];
NSData* stringDeviceId = [deviceId dataUsingEncoding:NSUTF8StringEncoding];

unsigned char* pBytesInput = (unsigned char*)[stringKey bytes];    //Bytes
unsigned char* pBytesKey = (unsigned char*)[stringDeviceId bytes];

unsigned int vlen = [secretKey length];    //Keys Length
unsigned int klen = [deviceId length];

unsigned int v;
unsigned int k = vlen % klen;
unsigned char c;

for(v = 0; v < vlen; v++)
{
    c = pBytesInput[v] ^ pBytesKey[k];
    pBytesInput[v] = c;
    NSLog(@"%c", c);

    k = (++k < klen ? k : 0);
}
}
  • 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-26T07:13:15+00:00Added an answer on May 26, 2026 at 7:13 am

    Are you setting your pBytesInput and pBytesKey variables correctly? At the moment, you have unsigned char* pBytesInput = (unsigned char*)[stringKey bytes]; (i.e. the input is the “key”), and pBytesKey is the device ID. This seems odd.

    Also, be careful using UTF-8 encoding. UTF-8 uses the high bit on any byte in the string to indicate a “continuation” of a multi-byte character into the next byte. Your encoding could plausibly generate invalid UTF-8 by giving the setting the high bit of the final byte in the encryption.

    For more than that, you’ll have to say what the “wrong result” is.

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

Sidebar

Related Questions

I have a huge problem with this method im trying to make. I have
I have this method call I have to use... financial_document.assets.length But financial_document.assets could be
How can I do this with the JS replace() method: Make \n\n change to
I have this method, that will be called against from a WCF Client, but
Say we have this method to make an ssh to another machine. How would
I have this method that I'm currently putting in each page I make, I
Maybe this is a simple question but I have this method: public int getMaxColumnData()
I have this method, that can return three different response. At first, it was
I have this method on a webpart: private IFilterData _filterData = null; [ConnectionConsumer(Filter Data
I have this method in my db class public function query($queryString) { if (!$this->_connected)

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.