mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-05 08:34:30 +00:00
feat(core): Added AES-128-CBC password scheme for SQL authentication.
This allows SOGo to use Plesk's database as an authentication source.
This commit is contained in:
@@ -617,7 +617,8 @@ groupObjectClasses: (NSArray *) newGroupObjectClasses
|
||||
- (NSString *) _encryptPassword: (NSString *) thePassword
|
||||
{
|
||||
NSString *pass;
|
||||
pass = [thePassword asCryptedPassUsingScheme: _userPasswordAlgorithm];
|
||||
pass = [thePassword asCryptedPassUsingScheme: _userPasswordAlgorithm
|
||||
keyPath: nil];
|
||||
|
||||
if (pass == nil)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user