Skip to main content Skip to complementary content
Close announcements banner

Managing encryption of Git passwords in LDAP for Talend Administration Center

If you are using LDAP authentication in Talend Administration Center, you may want to encrypt the Git password that is stored in it. Once you have encrypted your password, you need to compile a Java class that will allow you to manage password decryption in Talend Administration Center.

Before you begin

  • You have previously encrypted your password using the library of your choice. This library will be used both to encrypt and decrypt your password.
  • The Tomcat server holding Talend Administration Center is stopped.

Procedure

  1. Create a class file named DecryptLdapPassword.java based on the following code:
    import org.talend.administrator.common.crypto.LDAPCrypto;
    /**
     *
     */
    public class DecryptLdapPassword implements LDAPCrypto {
        @Override
        public String decrypt(String encryptedPassword) throws Exception {
            String decryptedPassword = null;
            //
            // instructions to decrypt password
            //
            return decryptedPassword;
        }
    }
  2. If you are using an IDE:
    1. Add the <TalendAdministrationCenterPath>/WEB-INF/classes folder of your Talend Administration Center application to the classpath of your project.
    2. Add your algorithm library to the classpath.
    3. Insert required instructions to decrypt the Git password stored in LDAP.

    If you are not using an IDE:

    1. Execute the following command to compile the JAR used for your decryption library as well as the Java class in the directory of your choice:

      On UNIX systems:

      cd <directoryOfMyJavaClass_DecryptLdapPassword>
      javac -classpath .:/org.talend.administrator-6.0.1-SNAPSHOT/WEB-INF/classes/:<myDirectory>/encryptionAlgorithm.jar DecryptLdapPassword.java

      On Windows systems:

      cd directoryOfMyJavaClass_DecryptLdapPassword
      javac -classpath .;c:\org.talend.administrator-6.0.1-SNAPSHOT\WEB-INF\classes\;c:\my\directory\encryptionAlgorithm.jar DecryptLdapPassword.java
  3. Get the compiled class DecryptLdapPassword.class and copy it to the following directory: <TalendAdministrationCenterPath>/WEB-INF/classes
  4. Open the file <TalendAdministrationCenterPath>/WEB-INF/classes/configuration.properties, uncomment the ldap.decryption.class= line and enter the class you have compiled as value of the property.
  5. Copy the JAR file used for the encryption algorithm in the following folder: <TalendAdministrationCenterPath>/WEB-INF/lib
  6. Restart the Tomcat server.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!