Re: [Tutor] encrypt a file in Python3

2012-11-10 Thread Mark Lawrence
On 10/11/2012 19:23, ke...@kendy.org wrote: Thank you Mark and eryksun! You've put me back on the road to success! I'll start saving up for your bill. :-) Ken ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: htt

Re: [Tutor] encrypt a file in Python3

2012-11-10 Thread kendy
Thank you Mark and eryksun! You've put me back on the road to success! I'll start saving up for your bill. :-) Ken ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] encrypt a file in Python3

2012-11-10 Thread eryksun
On Sat, Nov 10, 2012 at 12:54 AM, wrote: > > I want to encrypt a file, then decrypt it. I prefer to do it without adding > any > packages. > > $ uname -a > Linux laptop 3.2.0-32-generic-pae #51-Ubuntu SMP You'll either need to install the package "python3-crypto" or compile it yourself. To bui

Re: [Tutor] encrypt a file in Python3

2012-11-09 Thread Mark Lawrence
On 10/11/2012 05:54, ke...@kendy.org wrote: Hello! I want to encrypt a file, then decrypt it. I prefer to do it without adding any packages. I found http://eli.thegreenplace.net/2010/06/25/aes-encryption-of-files-in-python-with-pycrypto/ which seems like a good approach. How can I get the impo

[Tutor] encrypt a file in Python3

2012-11-09 Thread kendy
Hello! I want to encrypt a file, then decrypt it. I prefer to do it without adding any packages. I found http://eli.thegreenplace.net/2010/06/25/aes-encryption-of-files-in-python-with-pycrypto/ which seems like a good approach. How can I get the import to work for python 3? Here's what I get: