gpt4 book ai didi

openssl - 初始化向量(IV)中的数字全为零

转载 作者:行者123 更新时间:2023-12-04 02:17:35 33 4
gpt4 key购买 nike

我无法理解以下句子:“初始化向量 (IV) 中的数字全为零(不是 ASCII 字符‘0’)。

我的目标是使用 openssl enc 命令使用 aes-128-cbc 和 key K(比如 1234567890)和满足此类要求的 iv 来加密文件。

到目前为止,我已经尝试不放置 -iv 选项,但它会显示“iv undefined”,因为如果使用选项 -K,则必须提供选项 -iv。我试过使用 -iv 0 但不确定它是否正确。

例如,我使用了:

openssl enc -aes-128-cbc -e -in input.txt -out output.txt -K 1234567890 -iv 0

能否请您帮我说明满足上述要求的正确 iv?

最佳答案

AES-CBC 的 OpenSSL 实现要求 IV 的大小与 block 大小相同 - 即在您的情况下为 128 位。 enc 手册页说:

-iv IV
the actual IV to use: this must be represented as a string comprised only of hex digits.

它没有说明,如果命令行上给出的 IV 较短,那么如何获得所有 128 位 - 如您的示例命令所示。

幸运的是,OpenSSL 的源代码是可用的。我们可以在 enc.c 中看到,IV 被初始化为全零,然后从命令行参数填充起始字节:

[hiv is the value of the command-line option -iv:]

if ((hiv != NULL) && !set_hex(hiv, iv, sizeof iv)) {
BIO_printf(bio_err, "invalid hex iv value\n");

[...]

int set_hex(char *in, unsigned char *out, int size)
{
int i, n;
unsigned char j;

n = strlen(in);
if (n > (size * 2)) {
BIO_printf(bio_err, "hex string is too long\n");
return (0);
}
memset(out, 0, size);
for (i = 0; i < n; i++) {
.......

因此,您正在做的事情 - 只为“-iv”提供一个零 - 恰好会产生您需要的全零 IV。

请注意,使用常量(尤其是“典型”常量,例如全零)IV 是一种糟糕的安全做法; Wikipedia article解释原因。

关于openssl - 初始化向量(IV)中的数字全为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33012843/

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