ios - 将 BIO 保存到 char* 中(来自 SMIME_write_CMS)
<p><p>我想将一个 BIO 保存(管道/复制)到一个字符数组中。
当我知道它的大小时它起作用,但否则不起作用。</p>
<p>例如,我可以使用这个将我的 char* 的内容存储到一个 BIO 中</p>
<pre><code>const unsigned char* data = ...
myBio = BIO_new_mem_buf((void*)data, strlen(data));
</code></pre>
<p>但是当我尝试使用 SMIME_write_CMS 时,它需要一个 BIO(我之前创建的)作为输出,它不起作用。</p>
<pre><code>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!");
</code></pre>
<p>OpenSSL 引用使用 BIO 的直接文件输出。
这可行,但我不能在 objective-c 中使用 BIO_new_file()...:-/</p>
<pre><code>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;
</code></pre>
<p>大家有什么建议吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我建议尝试使用 SIZE-1,这样可以保证它以 NULL 终止。否则,它可能刚刚超过运行缓冲区。 </p>
<pre><code>out = BIO_new_mem_buf((void*)temp, SIZE-1);
</code></pre>
<p>如果有帮助,请告诉我。</p>
<p>编辑:</p>
<p>当使用 <code>BIO_new_mem_buf()</code> 时,它是一个只读缓冲区,所以你不能写入它。如果你想写入内存使用:</p>
<pre><code>BIO *bio = BIO_new(BIO_s_mem());
</code></pre></p>
<p style="font-size: 20px;">关于ios - 将 BIO 保存到 char* 中(来自 SMIME_write_CMS),我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9185089/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9185089/
</a>
</p>
页:
[1]