Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Initially I want convert this uint8_t array to char array in c. Im got little stuck, to resolve this problem. But my first alternative is copy to another type value to the temporary one and copy the tmp value to writible char and remove tmp value from memory. By the way this is I used for accompanying from blake hash function. here is my snippet:

char * bl(char *input)
{
    uint8_t  output[64];
    char msg[]= "";
    char *tmp;

    int dInt;

    memset(output,0,64);
    tmp = (char*) malloc(64);
    if (!tmp){
            exit( 1);
    }

    dInt = strlen(input);

    if (dInt > 0xffff){
            exit( 1);
    }
    uint8_t data[dInt];

    memset(data,0, dInt);
    strlcpy(data,input,dInt);
    uint64_t dLen =dInt;
    blake512_hash(output, data,dLen);

    int k;
    for (k=0;k<64;k++){
            tmp[k] = output[k];  //does this "copy" is buggy code?
    }

    memcpy(msg, tmp,64);
    //so here I can to delete tmp value
    // I dont want there were left unused value in memory
    // delete tmp;  
    free(tmp);

    return  msg;
}

I thinks such code above still not efficient, so how about your opinion, hints and the fixs. Thank you very much before !

share|improve this question

2 Answers

First of all, you should never return a pointer to a local variable since the variable will be destroyed by the time the function exits. You should probably want to pass the output array to bl function and use that to output the string.

For most cases(if uint8_t IS char, which is usually the case), memcpy(msg, output, 64) should be sufficient. If you want to be strict about it(quite frankly blake512_hash shouldn't return uint8_t array in the first place if you are expecting char array as the output all the time), you could simply call msg[k] = (char)tmp[k] in your for loop and remove memcpy.

share|improve this answer
I want to use this function later to be called in Python, that's way I'm expecting this funtion later will return an string value. – user1309539 Apr 18 '12 at 2:23
@user1309539 Yes but you should still fix the problem i mentioned in my answer. You simply cannot return the pointer to a local variable. – JosephH Apr 18 '12 at 2:25
then tmp variable would be useless. what to be copied from tmp variable, since tmp variable is only allocated char not the output one ? – user1309539 Apr 18 '12 at 2:36
@user1309539 you don't need tmp variable since you can simply copy the output to msg – JosephH Apr 18 '12 at 2:37
hehehe. that's, thanks :) – user1309539 Apr 18 '12 at 2:40

A bit much is wrong here.

dInt = strlen(input) + 1; // dInt is the size of the string including the terminating '\0'.

strlcpy indeed uses the size, not strlen.

msg = tmp; and not freeing tmp. As msg is const char* "" (in C++ terms).

share|improve this answer
umh, yes thanks. anymore wrong again, please give your suggestion about above code, thanks :) – user1309539 Apr 18 '12 at 2:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.