尝试将string
转换为uint8_t*
时遇到一些代码问题。请注意,我是C ++的新手,我正在努力理解它。
我的方法收到一个字符串:
8D7152D03D05942E403EB59DC2923B3F,E5DE428B05C0CE081E20E870712D7BE4,12796
然后由定界符','
分割。然后,我调用一个将string
转换为uint8_t*
的函数。
不知何故,我的变量key_
得到了正确的值,但是之后,该值改变了。
struct Key{
uint8_t *key_;
uint8_t *iv_;
uint32_t creation_timestamp;
...
void from_String(string text){
printf("Text to convert = %s\n", text.c_str());
stringstream ss(text);
string item;
vector<string> splittedStrings;
while(getline(ss,item,',')){
splittedStrings.push_back(item);
}
if(splittedStrings.size() == 3){
convert(splittedStrings[0],0);
printf("Key: %s\n", key_);
convert(splittedStrings[1],1);
convert(splittedStrings[2],2);
}else{
printf("Error ! Trying to reconstruct message with invalid data!\n");
}
}
...
void convert(string toConvert, int i){
char* endptr = NULL;
if (i == 0){
key_ = (uint8_t*) reinterpret_cast<const uint8_t*>(&toConvert[0]);
}else if (i == 1){
printf("Key2: %s\n", key_);
iv_ = (uint8_t*) reinterpret_cast<const uint8_t*>(&toConvert[0]);
}else if (i == 2){
creation_timestamp = strtol(toConvert.c_str(), &endptr, 10);
handleErrors(endptr, toConvert, creation_timestamp);
}else {
printf("Error. Operator is not correct!\n");
}
}
};
查看printf
如何显示key_
的值。该程序的输出为:
要转换的文本= 8D7152D03D05942E403EB59DC2923B3F,E5DE428B05C0CE081E20E870712D7BE4,40653
键:8D7152D03D05942E403EB59DC2923B3F
密钥2:E5DE428B05C0CE081E20E870712D7BE4
这是由于reinterpret_cast
的任何意外行为引起的吗?我已经尝试了其他方法将string
转换为uint8_t*
,但是结果是相同的。我尝试使用switch
而不是if else
条件,但是结果是相同的。