1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-20 10:50:08 +03:00
JensHoffmann 0a3ba8aca9 Bug #2503: Improve setting of password/auth_driver
UserChangePassword followed this strategy:
  a1. Eventually encrypt user password if the users
      auth_driver is CORE_AUTH
  a2. Set (probably encrypted) password with
      User::set_password
  a3. User::set_password tries to validate (probably
      encrypted) password instead of the raw password

UserChangeAuth did something similar:
  b1. If password is given (not empty) do a1 through a3
  b2. Set auth_driver

The change proposes the following:
 * In set_password:
    1. Validate the raw password
    2. Do encryption if needed
 * In UserChangePassword: simply call set_password
 * In UserChangeAuth: set auth_driver *before* calling
   set_password, such that set_password does the right thing
   if the auth_driver changes

Note: I needed to move the implementation of set_password
from User.h to User.cc since it seems impossible to access
UserPool::CORE_AUTH from within User.h.
2014-03-04 17:00:11 +01:00
..
2014-01-09 11:51:20 +01:00
2014-01-09 11:51:20 +01:00
2014-03-04 12:53:44 +01:00
2014-01-23 17:07:52 +01:00
2014-03-04 12:53:44 +01:00
2014-01-09 11:51:20 +01:00
2014-02-19 22:52:21 +01:00
2014-01-09 11:51:20 +01:00
2014-01-09 11:51:20 +01:00
2014-01-09 11:51:20 +01:00
2014-01-09 11:51:20 +01:00
2014-01-09 11:51:20 +01:00
2014-03-04 12:53:44 +01:00
2014-01-09 11:51:20 +01:00
2014-03-04 12:53:44 +01:00
2014-01-09 11:51:20 +01:00
2014-01-09 11:51:20 +01:00
2014-03-04 12:53:44 +01:00
2014-01-09 11:51:20 +01:00
2014-01-09 11:51:20 +01:00
2014-02-13 10:56:32 +01:00
2014-01-09 11:51:20 +01:00
2014-02-19 18:25:28 +01:00
2014-02-19 18:25:28 +01:00
2014-01-09 11:51:20 +01:00
2014-03-04 12:53:44 +01:00