Roundup Tracker - Issues

Message5303

Author antmail
Recipients antmail
Date 2015-04-01.09:51:21
Message-id <1427881882.9.0.926397979487.issue2550880@psf.upfronthosting.co.za>
In-reply-to
Attached patch provide the following:

1. Define password store scheme in schema.py. For example:

user = Class(db, "user",
                username=String(),
                password=Password( scheme = 'SSHA'),  # !
                address=String(),
                ...
                timezone=String())

2. Make available {SSHA} password store scheme.

{SSHA} store scheme is widely used in various subsystems. 
Password stored as {SSHA} can be transfered to and from different
authentication services. This make possible to sync passwords.
For exapmple, roundup password stored as {SSHA} can be transfered to
OpenLDAP userPassword attribute.



Needs testing.
History
Date User Action Args
2015-04-01 09:51:22antmailsetrecipients: + antmail
2015-04-01 09:51:22antmailsetmessageid: <1427881882.9.0.926397979487.issue2550880@psf.upfronthosting.co.za>
2015-04-01 09:51:22antmaillinkissue2550880 messages
2015-04-01 09:51:22antmailcreate