Author Topic: Encrypting text/passwords  (Read 2118 times)

Motley

  • Full Member
  • ***
  • Posts: 252
  • Karma: +32/-34
    • View Profile
Encrypting text/passwords
« on: September 03, 2016, 04:31:28 am »
So I became curious to creating a better method of encryting passwords, Thats when I began testing.

Well what do you think?

Is there better methods?

As well is it possible to receive this when logging in?

Code: [Select]
password <- "Password";

function onScriptLoad()
{
        local password = "Password";
        LoadModule("lu_hashing");
        print( "Encrypted text test: " + SHA1(password) + MD5(password) );
}
The output on print

SCRIPT: Encrypted text test:
8be3c943b1609fffbfc51aad666d0a04adf83c9ddc647eb65e6711e155375218212b3964
« Last Edit: September 03, 2016, 04:33:32 am by Mötley »

JamesConway

  • Newbie
  • *
  • Posts: 39
  • Karma: +9/-3
    • View Profile
Re: Encrypting text/passwords
« Reply #1 on: September 03, 2016, 11:59:46 am »
Salt + sha256 is the common standard nowadays, I believe.

https://crackstation.net/hashing-security.htm

Motley

  • Full Member
  • ***
  • Posts: 252
  • Karma: +32/-34
    • View Profile
Re: Encrypting text/passwords
« Reply #2 on: September 12, 2016, 04:14:35 pm »
Salt + sha256 is the common standard nowadays, I believe.

https://crackstation.net/hashing-security.htm


Thanks works!
SHA1( password + "? ??????????™®©");

My out put comes from hear
http://jaffagazanian.tumblr.com/post/5528389956/cool-characters-symbols
LU web page does not support the output hear unfortunately
« Last Edit: September 12, 2016, 04:16:29 pm by Mötley »

 

© Liberty Unleashed Team.