Re: Python Translation of C# DES Encryption

2006-05-15 Thread Andreas Pauley
the original plaintext value. As for padding, the C# method uses characters '\x01' to '\x07' for padding. If there are 3 padding characters needed (eg with a password of 5 chars), then three '\x03' chars will be used. Similarly, a 2-ch

Python Translation of C# DES Encryption

2006-05-12 Thread Andreas Pauley
Hi all, I'm trying to implement a Python equivalent of a C# method that encrypts a string. My Python attempt is in the attached file, but does not return the same value as the C# method (see below). Any hints? Thanks, Andreas The C# method: public static string Encrypt(string decrypted) {

Point of Sale Use Cases

2005-05-26 Thread Andreas Pauley
Hi all, I've started writing use cases for my open source point of sale system (my first attempt at use cases). http://qualitypos.qbcon.com/ If anyone here has experience with either use cases or point of sale systems, feel free to comment or criticize. Regards, Andreas -- http://mail.pytho

Re: User Security (Roles & Permissions)

2005-02-28 Thread Andreas Pauley
On Mon, 28 Feb 2005, Andreas Pauley wrote: Hi all, I'm starting with a Point of Sale system (QT gui, MySQL db) and I'm wondering if there are any user management/user security modules available that can be reused independently of the specific system that you write. I think something

User Security (Roles & Permissions)

2005-02-28 Thread Andreas Pauley
Hi all, I'm starting with a Point of Sale system (QT gui, MySQL db) and I'm wondering if there are any user management/user security modules available that can be reused independently of the specific system that you write. I think something similar to the roles & permission scheme of Zope would

Re: Point of Sale

2005-01-27 Thread Andreas Pauley
On Thu, 27 Jan 2005, Evan Simpson wrote: You may want to check out the Spread Toolkit, at www.spread.org, whose Python wrapper lives at http://www.python.org/other/spread/doc.html. It's used by the Zope Replication Service, for example. Cheers, Evan @ 4-am Thanks a lot, I need components like t

Re: Point of Sale

2005-01-27 Thread Andreas Pauley
On Thu, 27 Jan 2005, Peter Hansen wrote: Andreas Pauley wrote: My company has given me a rather cool project: I have to provide them with an open-source python-based point-of-sale / cash register system that can integrate with their existing ERP backend. Do you have information about the

Re: Point of Sale

2005-01-27 Thread Andreas Pauley
On Thu, 27 Jan 2005, Cameron Laird wrote: In article <[EMAIL PROTECTED]>, Andreas Pauley <[EMAIL PROTECTED]> wrote: Hi, My company has given me a rather cool project: I have to provide them with an open-source python-based point-of-sale / cash register system that can integrat

Point of Sale

2005-01-27 Thread Andreas Pauley
Hi, My company has given me a rather cool project: I have to provide them with an open-source python-based point-of-sale / cash register system that can integrate with their existing ERP backend. The project will include development to ensure that the features they require are included in the op