B
elow is the high level steps for encrypting and decrypting passwords in SSIS,
- Store the Password in encrypted format in data setup table
- Define a SSIS Variable called “EncryptionKey” in package level
- Use Execute SQL Task , Get the encrypted value from database and store the value in this “EncryptionKey”.
- Use Script component to decrypt the password from the SSIS Variable “EncryptionKey” and pass this value (Dynamically) to the connection string property of connection manager.
Please help me how to accomplish the above tasks.