Wiki

Articles tagged with "password", sorted by date (updated)X
Displaying 1-6 of 6 result(s).

Use crypt() for password storage

Updated about a month ago by fsbTutorials11 comments – viewed 15,460 times – ( +16 )
There Is Now A cpasswordhelper Class In system.utils at GitHub that provides an API to simplify the use of crypt() for password storage. While this wiki article remains valid, it will in due course be rewritten to refer to the new class as well as explain how it works.

Kickstart development with Yii-App

Updated 4 months ago by Chris83How-tos20 comments – viewed 9,766 times – ( +17 )
I recently created a project called Yii-App on GitHub to kickstart my development of smaller Yii applications. The main goal of the project is to provide a ready-to-use application template that includes my bootstrap extension and many other useful extensions. After reading this article you will be able to use this project as a starting point for all of your Yii projects.

Secure password hashing with bCrypt

Updated 5 months ago by Ivo PereiraHow-tos3 comments – viewed 11,125 times – ( +6 )
In this article I will show you how to implement a secure password hashing mechanism in your Yii projects using a bCrypt class.

Model password confirmation field.

Updated 10 months ago by PashaLHow-tos5 comments – viewed 24,491 times – ( +7 )
I had some troubles with the password confirmation field for when adding updating user records, so i thought that i should share the way i got it working.

Secure password hash storage and a Yii helper extension

Updated 11 months ago by fsbTutorials5 comments – viewed 16,969 times – ( +14 )
This article was rewritten as the README of the Randomness GitHub repo

Force a User to Change Their Password (ChangePasswordFilter)

Updated about a year ago by waterloomattTutorials1 comment – viewed 8,683 times – ( +14 )
Sometimes you need to force a user to change their password after x number of days. This article describes how to implement this using a filter, ChangePasswordFilter.