Skip to content

Commit

Permalink
Merge pull request #5564 from eddie-martinez/BACKLOG-40034
Browse files Browse the repository at this point in the history
[BACKLOG-40034] Provide an ability to configure different modes avail…
  • Loading branch information
tkafalas authored Mar 22, 2024
2 parents 0e3803b + a8b5619 commit f28695e
Showing 1 changed file with 22 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,29 @@

<password-encoder-plugin id="Kettle">
<description>Kettle Password Encoder</description>
<classname>org.pentaho.support.encryption.KettleTwoWayPasswordEncoder</classname>
<classname>org.pentaho.support.encryption.KettleTwoWayPasswordEncoder</classname>
</password-encoder-plugin>

<!--
<password-encoder-plugin id="AES">
<description>AES Password Encoder</description>
<classname>org.pentaho.support.encryption.AESTwoWayPasswordEncoder</classname>
<default-encoder>true</default-encoder>
</password-encoder-plugin>
<password-encoder-plugin id="AES">
<description>AES Password Encoder</description>
<classname>org.pentaho.support.encryption.AESTwoWayPasswordEncoder</classname>
<default-encoder>true</default-encoder>
</password-encoder-plugin>
-->

<!-- AES ENCRYPTION MODES
ECB (Electronic Code Book)
CBC (Cipher Block Chaining)
-->


<!--
<password-encoder-plugin id="AES2">
<description>AES2 Password Encoder</description>
<classname>org.pentaho.support.encryption.AES2TwoWayPasswordEncoder</classname>
<default-encoder>true</default-encoder>
<mode>ECB</mode>
</password-encoder-plugin>
-->

</password-encoder-plugins>

0 comments on commit f28695e

Please sign in to comment.