I have an SSIS package set up that uses a table for package configuration.
I change one connection manager in the package as I switch between environments (DEV, QA, PROD); all other configuration values are inserted as rows in the configuration table.
One of the rows has a username and password used in the package; this value (along with other rows) are changed when moving between environments.
How can I encrypt the row/column that contains the username/password and then decrypt/read into the SSIS package?
Thanks.