嗨,我正试图使用libssl通过函数RSA_padding_add_PKCS1_type1在libssl中获取一些EMSA_PSS_编码,但是我找不到文档和解决方案,所以这是我编写的示例代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/rsa.h>
#include <openssl/err.h>
FILE *error_file;
int main()
{
int lSize;
const unsigned char *string1= (unsigned char *)"The pen is on the table";
unsigned char *stringa=NULL;
int num = 64;
if ((stringa = (unsigned char *)OPENSSL_malloc(num)) == NULL)
fprintf(stderr,"OPENSSL_malloc error\n");
lSize = strlen((char *)string1);
fprintf(stdout,"string1 len is %u\n",lSize);
if(RSA_padding_add_PKCS1_type_1(stringa,num,string1,lSize) != 1)
fprintf(stderr,"Error: RSA_PADDING error\n");
error_file = fopen("libssl.log", "w");
ERR_print_errors_fp(error_file);
fclose(error_file);
fprintf(stdout,(char *)stringa);
fprintf(stdout,"\n");
}
问题是我在stringa中没有输出,我认为RSA_padding_add。。应该初始化,但在openssl站点的少数文档中找不到如何进行初始化。
谢谢
最佳答案
见http://www.openssl.org/docs/crypto/RSA_padding_add_PKCS1_type_1.html。
在设置string1之后,尝试将lSize定义为(int)strlen(string1)
。
编辑:
分配stringa。unsigned char *stringa=malloc(num);