gpt4 book ai didi

c - 将变量传递给 popen 命令

转载 作者:可可西里 更新时间:2023-11-01 11:47:14 25 4
gpt4 key购买 nike

我需要将一个字符串变量传递给我为解密一段加密数据而创建的 popen 命令。我需要使用的代码段是:

char a[]="Encrypted data";
popen("openssl aes-256-cbc -d -a -salt <a-which is the data i have to pass here>","r");

我应该怎么做才能将这个变量传递给命令。我试过:

popen("openssl aes-256-cbc -d -a -salt %s",a,"r");

但是在编译时显示错误,popen 传递了太多参数。请帮忙。提前致谢。运行平台:Linux

最佳答案

使用snprintf构造传递给popen的命令字符串。

FILE * proc;
char command[70];
char a[]="Encrypted data";
int len;
len = snprintf(command, sizeof(command), "openssl aes-256-cbc -d -a -salt %s",a);
if (if len <= sizeof(command))
{
proc = popen(command, "r");
}
else
{
// command buffer too short
}

关于c - 将变量传递给 popen 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11151926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com