带有libssl的EMSA_PSS_ENCODE

时间:2010-03-20 15:39:08

标签: c openssl libssl

您好我正在尝试使用libssl通过libssl中的函数RSA_padding_add_PKCS1_type1获取一些EMSA_PSS_ENCODING,但我找不到也没有文档或解决方案,所以这是我编写的示例代码:

#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网站的几个doc中找到它。

由于

1 个答案:

答案 0 :(得分:0)

http://www.openssl.org/docs/crypto/RSA_padding_add_PKCS1_type_1.html。 设置string1后尝试将lSize定义为(int)strlen(string1)

编辑:

分配stringa。

unsigned char *stringa=malloc(num);