Liberty Unleashed

Scripting => Scripting Discussion => Topic started by: Motley on September 03, 2016, 04:31:28 am

Title: Encrypting text/passwords
Post by: Motley 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
Title: Re: Encrypting text/passwords
Post by: JamesConway on September 03, 2016, 11:59:46 am
Salt + sha256 is the common standard nowadays, I believe.

https://crackstation.net/hashing-security.htm
Title: Re: Encrypting text/passwords
Post by: Motley on September 12, 2016, 04:14:35 pm
Salt + sha256 is the common standard nowadays, I believe.

[url]https://crackstation.net/hashing-security.htm[/url] ([url]https://crackstation.net/hashing-security.htm[/url])


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

My out put comes from hear
http://jaffagazanian.tumblr.com/post/5528389956/cool-characters-symbols (http://jaffagazanian.tumblr.com/post/5528389956/cool-characters-symbols)
LU web page does not support the output hear unfortunately