Security issue using Nant

349 Views Asked by At

I need to store authentication information and I rather not have the password in plain text:

<property name="user"      value="theUser"/>  
<property name="password"  value="secret"/>

Has anyone figured out a way to encrypt property values in Nant?
I've looked in Nant and Nantcontrib docs but no mention of encryption. I am considering going the route of creating my own Nant Task.

Any suggestions?

0

There are 0 best solutions below