Enable passphrase for File provider

Created on 18 October 2024, 6 months ago

In our case we received key file protected with passphrase.
Would it be possible to extend Key provider: File with additional field for passphrase? Today there is only option to specify path to the file (File location field).
Thanks

Feature request
Status

Active

Version

1.0

Component

Code

Created by

🇨🇿Czech Republic Bohus Ulrych Pilsen (Czechia)

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @Bohus Ulrych
  • 🇯🇵Japan ptmkenny

    Could you please provide more info about how the file is encrypted? I think adding a passphrase field would be confusing for users who don't need a passphrase, so what about creating a new key provider plugin that extends the existing File key provider plugin to also ask for the passphrase?

  • 🇨🇿Czech Republic Bohus Ulrych Pilsen (Czechia)

    Yes, why not to solve it with new key provider.

    In our case we are trying to connect to Snowflake https://docs.snowflake.com/en/user-guide/key-pair-auth
    We are using module snowflake where is in contrib/snowflake/src/Authenticator/KeyPairAuthenticator.php called
    $private_key_pem = openssl_pkey_get_private($key);
    This should be replaced later with something like
    $private_key_pem = openssl_pkey_get_private($key, $passphase);
    Value of $passphase should come from key module.

    Maybe it could be useful for others because openssl_pkey_get_private() can be used by other modules too (e.g. jwt)
    https://www.php.net/manual/en/function.openssl-pkey-get-private.php

  • 🇯🇵Japan ptmkenny

    Thanks for the additional information. Setting back to active.

Production build 0.71.5 2024