我想将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;
你们有什么建议吗?
答案 0 :(得分:3)
我建议尝试使用SIZE-1,这样可以确保它以NULL结尾。否则,它可能刚刚过度运行缓冲区。
out = BIO_new_mem_buf((void*)temp, SIZE-1);
如果有帮助,请告诉我。
编辑:
使用BIO_new_mem_buf()
时,它是一个只读缓冲区,因此您无法写入它。如果你想写入内存使用:
BIO *bio = BIO_new(BIO_s_mem());