1
我想知道是否建議使用union命令來執行MD5哈希? 我想使用union的原因是因爲我想要做如下的哈希結構。使用聯合進行結構類型的MD5哈希
struct Body{
int commandType;
char data[MaxLine];
};
union UBody{
Body body;
char str[MaxLine + 4];
}
因爲#include <openssl/md5.h>
需要字符類型這是我能想到的唯一的東西。請告訴我。
請注意,在C中'union'是* not * a * command * –