Revision 6ea0ca498612279833cbfa827906497fd14cc145 authored by MiguelFerreira1998 on 02 August 2021, 04:50:52 UTC, committed by GitHub on 02 August 2021, 04:50:52 UTC
Older versions of OpenSSL (prior to 1.1.0) had a fixed 50 char buffer
for password input.
This means that keys (etc) encrypted with a password > 50 chars
cannot be used by old versions of OpenSSL.

This change adds warnings/prompts when creating encrypted files with
passwords longer than 50 characters in elasticsearch-certutil.

Co-authored-by: Tim Vernum <tim@adjective.org>
1 parent 2dcc337
Raw File
.backportrc.json
{
  "upstream": "elastic/elasticsearch",
  "targetBranchChoices": [
    { "name": "master", "checked": true },
    { "name": "7.x", "checked": true },
    "7.14",
    "7.13",
    "6.8"
  ],
  "targetPRLabels": ["backport"],
  "branchLabelMapping": {
    "^v8.0.0$": "master",
    "^v7.15.0$": "7.x",
    "^v(\\d+).(\\d+).\\d+$": "$1.$2"
  }
}
back to top