We need to protect connection strings during development. On servers we use DPAPI which works fine. DPAPI is not an option during dev since the connection strings will need to be decrypted on many machines.
Some of the user names/password used for dev are rather sensitive and we don't want them floating around. It's fine for all the devs to be able to decrypt them, just want to ensure that if someone else gets their hands on the dev config files that person can't decrypt the connection strings. Using all service accounts instead of sensitive username/password is not an option due to external constraints.
My first inclination is to use the RSA provider for encrypting and installing the cert on the dev machines.
So my questions are;
1) How do you approach this issue?
2) If you take the RSA approach is there more up-to-date documentation than this
Thanks