How do I encrypt property values in 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/15
14:52 UTC
Read the original article
Hit count: 495
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