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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:19:06+00:00 2026-06-14T18:19:06+00:00

My AES method (code below) works only with it self cipher data. I don’t

  • 0

My AES method (code below) works only with it self cipher data.
I don’t know where it goes wrong. Could you suggest me someframework or better implementation?

- (NSData *)aesOperation:(CCOperation)op OnData:(NSData *)data key:(NSString*)inKey {
    NSData *outData = nil;
    int bufferSize = 6000000;
    NSLog(@"AES InData: %@",data);
    if (inKey == NULL) {
        NSLog(@"A klucz to chcesz wyczarować? Podaj klucz do zaszyfrowanego pliku");
        return NULL;
    }

    const void *key = inKey ;
    const void *dataIn = data.bytes;
    size_t dataInLength = data.length;
    // Data out parameters
    size_t outMoved = 0;

    unsigned char outBuffer[bufferSize];
    memset(outBuffer, 0, bufferSize);
    CCCryptorStatus status = -1;

    status = CCCrypt(op, kCCAlgorithmAES128, kCCOptionECBMode, key, kCCKeySizeAES128, NULL,
                     dataIn, dataInLength, &outBuffer, bufferSize, &outMoved);

    if(status == kCCSuccess) {
        outData = [NSData dataWithBytes:outBuffer length:outMoved];
    } else if(status == kCCBufferTooSmall) {

        size_t newsSize = outMoved;
        void *dynOutBuffer = malloc(newsSize);
        memset(dynOutBuffer, 0, newsSize);
        outMoved = 0;

        status = CCCrypt(op,kCCAlgorithmAES128,kCCOptionECBMode,key,kCCKeySizeAES128,NULL,dataIn, dataInLength, &outBuffer, bufferSize, &outMoved);

        if(status == kCCSuccess) {
            outData = [NSData dataWithBytes:outBuffer length:outMoved];
        }
    }
    return outData;
}
  • 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-14T18:19:07+00:00Added an answer on June 14, 2026 at 6:19 pm

    I found proper way to use AES cipher/decipher which works well with everybody.

    - (NSData *)initCipherData:(NSData *)data key:(NSString*)key{
        return [self aesOperation:kCCEncrypt OnData:data key:key];
    }
    
    - (NSData *)initDecipherData:(NSData *)data key:(NSString*)key{
        return [self aesOperation:kCCDecrypt OnData:data key:key];
    }
    
    - (NSData *)aesOperation:(CCOperation)op 
                      OnData:(NSData *)data 
                         key:(NSString*)inKey {
    
        const char * key = [inKey UTF8String];
        NSUInteger dataLength = [data length];
        uint8_t unencryptedData[dataLength + kCCKeySizeAES128];
        size_t unencryptedLength;
    
        CCCrypt(op, 
                kCCAlgorithmAES128, 
                kCCOptionECBMode, 
                key, 
                kCCKeySizeAES128, 
                NULL, 
                [data bytes], 
                dataLength, 
                unencryptedData, 
                dataLength, 
                &unencryptedLength);
        return [NSData dataWithBytes:unencryptedData length:unencryptedLength];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to code AES using Cipher Block Chaining(CBC) mode. I am pretty
Already understanding that AES is the encryption method of choice, should existing code that
Using the code below, I get the error, Call to undefined method stdClass::fetchObject() .
How do I implement AES encryption with the java bouncy castle library? Example code
I'm trying to AES encode data in java, send it over the network and
Here is my code guys, what am I doing wrong (I am forced to
I've implemented AES/CTR on Android using the built-in Cipher class. Decryption appears to be
I have the following test code to encrypt and decrypt a string. It works
I need a system to exchange very secret data (source code that is a
This is my code for AES. Under Gingerbread I get following error after encrypting

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.