David Masover wrote: > On Friday 11 September 2009 08:15:01 am Rodrigo Bermejo wrote: >> I've been in the need to crate applications which require to make use of >> another program which requires authentication. As everyone who has >> tried to solve this problem with a script lang (no compiled, what would >> be the best term /?), a security concern comes in play. >> >> Where in hell should I put the password /? > > Probably the same place you'd put it in a complied language. Consider: > > int main() { > char * a = "one two three"; > a = "four five six"; > return 0; > } > > Compile that, even strip the result, then run strings on it. I get this: > 1) What does "even strip the result" mean? 2) What does "run strings on it" mean? -- Posted via http://www.ruby-forum.com/.