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?

link|improve this question

75% accept rate
hi Diego. Did you find a workaround for this? I'm having the same problem. – Al P Aug 31 '11 at 10:06
Unfortunately I haven't find a workaround. I am starting to think the only route is to create your own task, however, I have not gotten a chance to get to it. Sorry! – Diego C. Sep 1 '11 at 20:01
feedback

1 Answer

Not exactly what You asked for but here is a similar SO question dealing with passwords in NAnt. The accepted answer presents a solution that prompts for passwords interactively.

link|improve this answer
yea, not really what I am looking for. Prompting a password defeats the purpose of the automation process. Thanks for trying though :) – Diego C. Jun 17 '10 at 20:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.