Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/blowfish #1

Open
wants to merge 23 commits into
base: feature/Blowfish
Choose a base branch
from
Open

Feature/blowfish #1

wants to merge 23 commits into from

Commits on Jul 3, 2012

  1. Merge pull request mishamx#6 from Alan01252/master

    Fix redirect
    mishamx committed Jul 3, 2012
    Configuration menu
    Copy the full SHA
    fa8dd2a View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2012

  1. Implement password salts

    lennartvdd committed Jul 8, 2012
    Configuration menu
    Copy the full SHA
    703d969 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2012

  1. Update master

    hastenax committed Jul 16, 2012
    Configuration menu
    Copy the full SHA
    e24aa4a View commit details
    Browse the repository at this point in the history
  2. Merge pull request mishamx#8 from hastenax/patch-1

    Update master
    mishamx committed Jul 16, 2012
    Configuration menu
    Copy the full SHA
    0dd970c View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2012

  1. Configuration menu
    Copy the full SHA
    491f814 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2012

  1. Improvement of password salts & small bugfix

    * Added a salt column to the user table.
    * Adds a salt to users that have no salted password upon succesfull login.
    * Salts are now more unique/random
    
    * Bug fixed:
    This commit fixes a bug where a password could by stored to the database
    in plaintext format by the AdminController->actionUpdate() function,
    when an admin would supply an unencrypted version of the old password
    (effectively changing the password to itself, but skipping the encryption
    methods).
    lennartvdd committed Oct 1, 2012
    Configuration menu
    Copy the full SHA
    ce7c5d8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ec8dbd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f574da4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7936b40 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2012

  1. Configuration menu
    Copy the full SHA
    8d6e791 View commit details
    Browse the repository at this point in the history
  2. WebUser UpdateSession bugfix

    mishamx committed Oct 28, 2012
    Configuration menu
    Copy the full SHA
    21dda7e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0078af2 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2012

  1. Merge pull request mishamx#16 from mondayx/master

    Fix lastvisit_at update on login
    mishamx committed Oct 29, 2012
    Configuration menu
    Copy the full SHA
    934df63 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2012

  1. Date format bugfix

    mishamx committed Oct 30, 2012
    Configuration menu
    Copy the full SHA
    385e1f5 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2012

  1. Registration bugfix

    mishamx committed Nov 4, 2012
    Configuration menu
    Copy the full SHA
    3d9b6ca View commit details
    Browse the repository at this point in the history
  2. Added sendMailToUser method

    mishamx committed Nov 4, 2012
    Configuration menu
    Copy the full SHA
    af3c90d View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2012

  1. Configuration menu
    Copy the full SHA
    a77afe8 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2012

  1. Merge branch 'master' of github.com:mishamx/yii-user into feature/sal…

    …ted_passwords
    
    Conflicts:
    	controllers/RegistrationController.php
    	models/User.php
    lennartvdd committed Nov 22, 2012
    Configuration menu
    Copy the full SHA
    5acc2af View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2012

  1. Configuration menu
    Copy the full SHA
    3077ec5 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into feature/Blowfish

    Conflicts:
    	UserModule.php
    	components/UserIdentity.php
    	controllers/RegistrationController.php
    	models/User.php
    	models/UserChangePassword.php
    lennartvdd committed Nov 29, 2012
    Configuration menu
    Copy the full SHA
    38ff830 View commit details
    Browse the repository at this point in the history
  3. Fix blowfish implementation

    * Replaced Randomness extension (Unix only) with a more generally compatible static function in the User model for Blowfish salt generation
    * Added $2y$ Blowfish mode to deal with potential high-bit attacks for PHP versions >= 5.3.7
    * Fix a small typo causing fatal error:wq
    lennartvdd committed Nov 29, 2012
    Configuration menu
    Copy the full SHA
    7c27469 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ba44d9d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bf00b37 View commit details
    Browse the repository at this point in the history