md5 encryption at your fingertips

I found my self in a dilemma here recently, I needed to generate my own md5 hash password on the fly (encryption).

So I found 3 ways to do this:


shell: php -r 'echo md5("test");'
098f6bcd4621d373cade4e832627b4f6


mysql: select md5('test');
098f6bcd4621d373cade4e832627b4f6


shell: echo -n test | md5sum
098f6bcd4621d373cade4e832627b4f6

Learn more about md5 encryption here

Comments

Post new comment

  • Allowed HTML tags: <strong> <code>
  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options