Re: [racket] About security for an input password

2010-10-15 Thread scouic
Yeah you're right, big thanks _ For list-related administrative tasks: http://lists.racket-lang.org/listinfo/users

Re: [racket] About security for an input password

2010-10-15 Thread Neil Van Dyke
No, you cannot escape the scouic wrote at 10/15/2010 07:36 AM: As you know in other languages, it exists failures with security of passwords, for example type 1OR1 with escape ' " strings, etc. [...] In my code, i define an admin password ( a string ), for example with (define admin-pass "foo"

[racket] About security for an input password

2010-10-15 Thread scouic
Hi, As you know in other languages, it exists failures with security of passwords, for example type 1OR1 with escape ' " strings, etc. I am trying to make an interactive blog, and all users can post comments at each posts, but only guys who know the password can create, update, delete posts, etc.