Skip to content
New issue

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

feat: Implement pluggable password generator #2659

Merged
merged 1 commit into from
Sep 24, 2020
Merged

feat: Implement pluggable password generator #2659

merged 1 commit into from
Sep 24, 2020

Commits on Sep 24, 2020

  1. feat: Implement pluggable password generator

    Remove dependency on GoKey for password generator;
    if not specified, the built-in password generator
    does the equivalent of "openssl rand -base64 33"
    which generates a base64 encoded random string
    of 264 random bits.
    
    Otherwise, the code looks for a PasswordProvider
    in configuration that points to an executable,
    and PasswordProviderArgs that specify the
    arguments to that executable.  The code then
    launches that exectuable, trims the trailing
    newline, and uses the result as a password.
    
    Signed-off-by: Bryon Nevis <bryon.nevis@intel.com>
    bnevis-i committed Sep 24, 2020
    Configuration menu
    Copy the full SHA
    4aa317e View commit details
    Browse the repository at this point in the history