PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Sunday, February 20, 2022

[FIXED] how to encrypt password like Laravel Hashing directly in table column

 February 20, 2022     database, encryption, hash, laravel     No comments   

Issue

I am new to Laravel. How to do password encryption like Laravel hashing directly in table column, like md5(Not using code, I want to go and directly edit column value)

enter image description here

enter image description here


Solution

You could create a simple php code and use password_hash function, or just use online password_hash tool like this. The value will be valid hashed password that can be used, since Hash::make in Laravel uses password_hash too (Laravel Framework Source).



Answered By - TheArKa
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing