Re: Encryption source code with md5

2010-04-04 Thread geremy condra
On Sun, Apr 4, 2010 at 8:42 PM, Robert Kern wrote: > On 2010-04-04 17:44 , geremy condra wrote: >> >> On Sun, Apr 4, 2010 at 6:03 PM, Robert Kern  wrote: >>> >>> On 2010-04-03 20:21 , Lawrence D'Oliveiro wrote: In message<4baf3ac4$0$22903$e4fe5...@news.xs4all.nl>, Irmen de Jong wrot

Re: Encryption source code with md5

2010-04-04 Thread Robert Kern
On 2010-04-04 17:44 , geremy condra wrote: On Sun, Apr 4, 2010 at 6:03 PM, Robert Kern wrote: On 2010-04-03 20:21 , Lawrence D'Oliveiro wrote: In message<4baf3ac4$0$22903$e4fe5...@news.xs4all.nl>, Irmen de Jong wrote: On 28-3-2010 12:08, Lawrence D'Oliveiro wrote: Don’t use MD5. Also, m

Re: Encryption source code with md5

2010-04-04 Thread geremy condra
On Sun, Apr 4, 2010 at 6:03 PM, Robert Kern wrote: > On 2010-04-03 20:21 , Lawrence D'Oliveiro wrote: >> >> In message<4baf3ac4$0$22903$e4fe5...@news.xs4all.nl>, Irmen de Jong wrote: >> >>> On 28-3-2010 12:08, Lawrence D'Oliveiro wrote: >>> Don’t use MD5. >>> >>> Also, md5 is not an encryptio

Re: Encryption source code with md5

2010-04-04 Thread Robert Kern
On 2010-04-03 20:21 , Lawrence D'Oliveiro wrote: In message<4baf3ac4$0$22903$e4fe5...@news.xs4all.nl>, Irmen de Jong wrote: On 28-3-2010 12:08, Lawrence D'Oliveiro wrote: Don’t use MD5. Also, md5 is not an encryption algorithm at all, it is a secure hashing function. You can use hash func

Re: Encryption source code with md5

2010-04-03 Thread Steven D'Aprano
On Sun, 04 Apr 2010 13:21:34 +1200, Lawrence D'Oliveiro wrote: > In message <4baf3ac4$0$22903$e4fe5...@news.xs4all.nl>, Irmen de Jong > wrote: > >> On 28-3-2010 12:08, Lawrence D'Oliveiro wrote: >> >>> Don’t use MD5. >> >> Also, md5 is not an encryption algorithm at all, it is a secure hashing >

Re: Encryption source code with md5

2010-04-03 Thread Lawrence D'Oliveiro
In message <4baf3ac4$0$22903$e4fe5...@news.xs4all.nl>, Irmen de Jong wrote: > On 28-3-2010 12:08, Lawrence D'Oliveiro wrote: > >> Don’t use MD5. > > Also, md5 is not an encryption algorithm at all, it is a secure hashing > function. You can use hash functions for encryption. -- http://mail.pyth

Re: Encryption source code with md5

2010-03-28 Thread Steven D'Aprano
On Sun, 28 Mar 2010 10:08:20 -0400, Steve Holden wrote: > catalinf...@gmail.com wrote: >> I had a talk about Python and distribution of commercial products >> created with python. This made me think of a way to protect my source >> code to be distributed. I thought a live CD version and then to an

Re: Encryption source code with md5

2010-03-28 Thread Harishankar
On Sun, 28 Mar 2010 10:08:20 -0400, Steve Holden wrote: > catalinf...@gmail.com wrote: >> I had a talk about Python and distribution of commercial products >> created with python. This made me think of a way to protect my source >> code to be distributed. I thought a live CD version and then to an

Re: Encryption source code with md5

2010-03-28 Thread Steve Holden
catalinf...@gmail.com wrote: > I had a talk about Python and distribution of commercial products > created with python. This made me think of a way to protect my source > code to be distributed. I thought a live CD version and then to an > encryption method of a portion of source code. These though

Re: Encryption source code with md5

2010-03-28 Thread catalinf...@gmail.com
I had a talk about Python and distribution of commercial products created with python. This made me think of a way to protect my source code to be distributed. I thought a live CD version and then to an encryption method of a portion of source code. These thoughts are the source of two questions. -

Re: Encryption source code with md5

2010-03-28 Thread Irmen de Jong
On 28-3-2010 12:08, Lawrence D'Oliveiro wrote: In message<91541c26-6f18-40c7- a0df-252a52bb7...@l25g2000yqd.googlegroups.com>, catalinf...@gmail.com wrote: It is possible to encrypt with md5 python source code? Don’t use MD5. Also, md5 is not an encryption algorithm at all, it is a secure h

Re: Encryption source code with md5

2010-03-28 Thread Lawrence D'Oliveiro
In message <91541c26-6f18-40c7- a0df-252a52bb7...@l25g2000yqd.googlegroups.com>, catalinf...@gmail.com wrote: > It is possible to encrypt with md5 python source code? Don’t use MD5. > What option do I have to protect my python source code? Copyright. -- http://mail.python.org/mailman/listinfo

Re: Encryption source code with md5

2010-03-28 Thread starglider develop
py2exe On 28 March 2010 07:59, catalinf...@gmail.com wrote: > Dear friends . > > I have two simple questions: > It is possible to encrypt with md5 python source code? > What option do I have to protect my python source code? > > Thank you . > -- > http://mail.python.org/mailman/listinfo/python-l

Re: Encryption source code with md5

2010-03-28 Thread alex goretoy
There's not many options when it comes to obfuscating python source. If you even do find a way to obfuscate it. It won't take much to reverse it. That's just how python works. Really I wouldn't even worry about looking for a way to do this, reason behind that is that it's not difficult to reverse i