我正在尝试创建一个由具有主私钥的对等方控制的对等网络,其中一部分是批准对等方连接
以下代码假设采用公钥,签名并将其发送给对等方,以便它可以检查其是否有效以及在其批准的对等列表中
gcry_sexp_t signature, keydata;
char *blob = malloc(size + 64);
sprintf(blob, "(data\n (flags pkcs1)\n (hash sha1 #%.*s#))\n", (int)size, buf);
printf("%s\n", blob);
free(buf);
gcry_sexp_sscan(&keydata, &size, blob, strlen(blob));
printf("offset %d\n", (int)size);
size = gcry_sexp_sprint(keydata, GCRYSEXP_FMT_ADVANCED, NULL, 0);
printf("size %d\n", (int)size);
buf = gcry_xmalloc(size);
gcry_sexp_sprint(keydata, GCRYSEXP_FMT_ADVANCED, buf, size);
printf("keydata: %.*s\n", size, buf);
free(buf);
gcry_pk_sign(&signature, keydata, skey);
size = gcry_sexp_sprint(signature, GCRYSEXP_FMT_ADVANCED, NULL, 0);
buf = gcry_xmalloc(size);
gcry_sexp_sprint(signature, GCRYSEXP_FMT_ADVANCED, buf, size);
//add signature buf to msg and send to peer
但它崩溃了。有什么想法吗?
答案 0 :(得分:1)
printf
参数是错误的。应该是:
printf("keydata: %.*s\n", size, buf);