我有这个代码:
#include <stdio.h>
#include <openssl/sha.h>
#include <openssl/ssl.h>
int main(){
printf("OpenSSL version: %s\n",OPENSSL_VERSION_TEXT);
EC_KEY * key = EC_KEY_new_by_curve_name(NID_secp256k1);
if(!EC_KEY_generate_key(key)){
printf("GENERATE KEY FAIL\n");
return 1;
}
u_int8_t pubSize = i2o_ECPublicKey(key, NULL);
if(!pubSize){
printf("PUB KEY TO DATA ZERO\n");
return 1;
}
u_int8_t * pubKey = malloc(pubSize);
if(i2o_ECPublicKey(key, &pubKey) != pubSize){
printf("PUB KEY TO DATA FAIL\n");
return 1;
}
u_int8_t * hash = malloc(SHA256_DIGEST_LENGTH);
SHA256(pubKey, pubSize, hash);
for (int x = 0; x < 32; x++) {
printf("%.2x",hash[x]);
}
EC_KEY_free(key);
free(pubKey);
free(hash);
return 0;
}
如您所见,我正在尝试散列公钥并打印它。SHA 哈希失败 sha256_block_data_order。这里有更多信息...
版本为:OpenSSL 1.0.1c 2012 年 5 月 10 日 pubSize 设置为 65
在第二个 i2o_ECPublicKey 之后,pubKey 数据以某种方式失效:
(gdb) p/x *pubKey @ 65
Cannot access memory at address 0x4d0ff1
然而,在第二个 i2o_ECPublicKey 之前,分配的 pubKey 数据给出:
(gdb) p/x *pubKey @ 65
$1 = {0x0 <repeats 65 times>}
所以 malloc 分配很好。第二个 i2o_ECPublicKey 调用没有按预期工作。如何将 EC 公钥读入字节?
谢谢你。