我想将 BIO 保存(管道/复制)到 char 数组中。当我知道它的大小时,它可以工作,否则不行。
例如,我可以使用这个将我的 char* 的内容存储到 BIO 中
const unsigned char* data = ...
myBio = BIO_new_mem_buf((void*)data, strlen(data));
但是当我尝试使用 SMIME_write_CMS 时,它需要一个 BIO(我之前创建的)作为输出,它不起作用。
const int SIZE = 50000;
unsigned char *temp = malloc(SIZE);
memset(temp, 0, SIZE);
out = BIO_new_mem_buf((void*)temp, SIZE);
if (!out) {
NSLog(@"Couldn't create new file!");
assert(false);
}
int finished = SMIME_write_CMS(out, cms, in, flags);
if (!finished) {
NSLog(@"SMIME write CMS didn't succeed!");
assert(false);
}
printf("cms encrypted: %s\n", temp);
NSLog(@"All succeeded!");
OpenSSL 参考使用带有 BIO 的直接文件输出。这可行,但我不能在objective-c中使用 BIO_new_file() ... :-/
out = BIO_new_file("smencr.txt", "w");
if (!out)
goto err;
/* Write out S/MIME message */
if (!SMIME_write_CMS(out, cms, in, flags))
goto err;
你们有什么建议吗?