super password encryption

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    One-Way Encryption Is The Way Forward. Decrypting A Password Only Benefits The Web Developer (When He Wants To Peep The Users Password, Which Is Stupid BTW And If You Have Any Ounce Of Pride You Wont). using Normal PHP Functions Like md5 And sha1 Are Usually Enough To Protect A Password. md5 Decrypters Only attempt To Guess The Encrypted Passwords. If You Feel Like You Want To Do More Then Use PHP mcrypt's Extension. That Amount Of Recursive Encryption Is A Useless Waste And Abuse Of PHP Resources.

    Comment


      #17
      md5() , u can security ur password by md5 encoder

      Comment


        #18
        I like this simple combination.

        PHP Code:
        function hash($string) {
            return 
        md5(sha1(md5($string)));

        <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

        Comment


          #19
          i agree with arnage , Keep it simple yet secure.... this is my way..

          Code:
          	function hash($string) { 
          		$salt = 's+(_a*';
          		 return sha1(md5($string.$salt));  
          		 }

          Comment


            #20
            Originally posted by php_n0ob View Post
            :D decode it
            PHP Code:
            77f646152b20f261d5509b653e3d4fe2 
            so i did.. now what ? :P
            Code:
            hibuddy
            It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
            ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
            ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
            キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

            Comment


              #21
              he he

              Originally posted by metulj View Post
              so i did.. now what ? :P
              Code:
              hibuddy

              he he nice

              Comment

              Working...
              X