Security issue using Nant

Posted by Diego C. on Stack Overflow See other posts from Stack Overflow or by Diego C.
Published on 2010-06-15T14:48:10Z Indexed on 2010/06/16 18:22 UTC
Read the original article Hit count: 279

Filed under:
|
|
|

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?

© Stack Overflow or respective owner

Related posts about encryption

Related posts about nant