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

tls: allow obvious key/passphrase combinations #10294

Closed

Commits on Dec 19, 2016

  1. tls: allow obvious key/passphrase combinations

    Passphrase is now used whether keys are provided singly, in an array of
    string/buffer, or an array of object, where it used to be ignored in
    some argument combinations. Specifically, these now work as expected:
    
      key: [encryptedPem],
      passphrase: 'passphrase'
    
    and
    
      key: [{pem: encryptedPem}]
      passphrase: 'passphrase'
    
    and
    
      key: [{pem: unencryptedPem}]
    sam-github committed Dec 19, 2016
    Configuration menu
    Copy the full SHA
    73ad15a View commit details
    Browse the repository at this point in the history