I'm trying to figure out how to use the midstate with CC_SHA256 (from the CommonCrypto/CommonDigest library). To do that, I first tried to create my own midstate, but it doesn't seem to work. To my understanding, I need to hash half of the input, save the context aside (which is the "midstate"), then reuse the context later when hashing the resulting hash from before. That should be equal to what I get if I just hash the original data in one go.

I'm sure I'm missing something..Can anyone tell me what's wrong with my code?

- (void)testExample {
    const char* data = "1234567890";
    unsigned char md[32];

    CC_SHA256(data, 10, md);

    NSLog(@"Full SHA: %@", [NSData dataWithBytes:md length:32]);

    CC_SHA256_CTX ctx;
    CC_SHA256_CTX midstate;
    CC_SHA256_Init(&ctx);
    CC_SHA256_Update(&ctx, data, 5);
    midstate = ctx;

    CC_SHA256_Final(md, &ctx);


    NSLog(@"Partial SHA: %@", [NSData dataWithBytes:md length:32]);

    CC_SHA256_Update(&midstate, md, 32);
    CC_SHA256_Final(md, &midstate);

    NSLog(@"Finalized SHA: %@", [NSData dataWithBytes:md length:32]);
}

With the result:

Full SHA: <c775e7b7 57ede630 cd0aa111 3bd10266 1ab38829 ca52a642 2ab78286 2f268646>
Partial SHA: <5994471a bb01112a fcc18159 f6cc74b4 f511b998 06da59b3 caf5a9c1 73cacfc5>
Finalized SHA: <fc1b330f c820c79c 5b15c87b d9f91f06 53c26a5f f691153b e7c0f31c 5520c0d4>
link|improve this question

71% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.