在加密算法中,密码在内部限制为 72 个字符。
要了解原因,让我们看一下 的来源:ext/standard/crypt.ccrypt()
} else if (
salt[0] == '$' &&
salt[1] == '2' &&
salt[3] == '$') {
char output[PHP_MAX_SALT_LEN + 1];
memset(output, 0, PHP_MAX_SALT_LEN + 1);
crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output));
if (!crypt_res) {
ZEND_SECURE_ZERO(output, PHP_MAX_SALT_LEN + 1);
return NULL;
} else {
result = zend_string_init(output, strlen(output), 0);
ZEND_SECURE_ZERO(output, PHP_MAX_SALT_LEN + 1);
return result;
}
该字段是一个简单的字段。所以没有长度的信息。所有传递的只是一个普通的指针。password
char*
因此,如果我们遵循这一点,我们最终将降落在BF_set_key
。
重要的部分是循环:
for (i = 0; i < BF_N + 2; i++) {
tmp[0] = tmp[1] = 0;
for (j = 0; j < 4; j++) {
tmp[0] <<= 8;
tmp[0] |= (unsigned char)*ptr; /* correct */
tmp[1] <<= 8;
tmp[1] |= (BF_word_signed)(signed char)*ptr; /* bug */
if (j)
sign |= tmp[1] & 0x80;
if (!*ptr)
ptr = key;
else
ptr++;
}
diff |= tmp[0] ^ tmp[1]; /* Non-zero on any differences */
expanded[i] = tmp[bug];
initial[i] = BF_init_state.P[i] ^ tmp[bug];
}
BF_N
定义为 16。所以外层循环将循环 18 次 ()。BF_N + 2
内部循环将循环 4 次。4 * 18 == 72。
你有它,只有72个字符的密钥将被读取。没有了。
注意
现在,该算法有一个有趣的副作用。因为它使用C字符串(以空字节终止的字符串),所以它不可能使用过去的任何内容。因此,包含空字节的密码将丢失超过它的任何熵。示例:http://3v4l.org/Y6onV\0
\0