Phalcon SecurityPhalcon provides the common security tasks to the developers such as:
Password HashingIt is a technique where password is stored in the encrypted form in the database. If the password is stored in the plain text format then any intruder that has the access to the database can easily view the passwords. To avoid this problem password hashing has 2 techniques:
Example See this example of password hashing by using md5 technique: Output: After successful login in database we can see password stored in hash format: Next TopicPhalcon (CSRF) |