我正在尝试使用来自 OpenSSL 的 DSA 进行签名。我有包含公钥和私钥的文件。
首先,我建立了单播连接,一切都很好。之后,我需要一个多播 UDP 连接,并且我想对数据包进行签名。我正在尝试使用函数PEM_read_DSA_PUBKEY()
从我的证书中加载我的公钥,但它不起作用。它总是返回NULL
而不是 DSA 结构。
在这里,您有一个简化版本的代码。我这样编译:
gcc -Wall -g -lm prueba.c -o prueba -lcrypto
任何想法?谢谢!
#include <stdio.h>
#include <openssl/dsa.h>
#include <openssl/pem.h>
int main()
{
FILE *DSA_cert_file = fopen("./certs/cert.pem", "r");
if (DSA_cert_file == NULL)
return 1;
printf("Certificate read\n");
DSA *dsa = DSA_new();
if((dsa = PEM_read_DSA_PUBKEY(DSA_cert_file, 0, 0, 0)) == NULL)
return 1;
printf("DSA public key read\n");
return 0;
}