We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Even when password is enabled, for key generation only first 32 bytes of seed-password-iv buffer are used:
EVP_DigestInit(&ctx, EVP_sha1()); EVP_DigestUpdate(&ctx, buffer, OBFUSCATE_SEED_LENGTH + iv_len); EVP_DigestFinal(&ctx, md_output, &md_len);
So, for instance, when password is longer then 16 bytes, the same key will be used for client and for server.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Even when password is enabled, for key generation only first 32 bytes of seed-password-iv buffer are used:
So, for instance, when password is longer then 16 bytes, the same key will be used for client and for server.
The text was updated successfully, but these errors were encountered: