how to use md5-encrypted passwords?
hi,
i've configured amxx to use our existing database, but since we're storing the user's password with MD5-encryption... is it possible to use this password in amxx too? my childish guess to change line # 188 of admin_mysql.sma from Code:
else if (equal(password,g_aPassword[index])) {Code:
else if (equal(md5(password),g_aPassword[index])) {furthermore a config-option to choose whether to use password-encryption (none,md5,mysql) or not would be great |
Amx currently doesn't have the capability to code/decode md5 encryption
|
I will add an md5() encryption function to all SQL modules for 0.20.
|
Quote:
|
Quote:
|
What stops you from using the md5-function in MySQL? I use that one alot since not that many languages supports built-in md5 support.
example: Code:
SELECT * |
is there any advantage other that that the passwords are not save in clear text in the db any more?
|
Passwords should never be cleartext :wink:
|
Not everyone in your clan should have rcon access, but look how many people listen to that :roll:
|
Quote:
Would be useful for checksums on stuff like AmxGuard.. :) And most people wouldn't want to use the sql module if they didnt have to |
maybe add a base64 encoding also.. some guy made that in a module back on amx forums..
|
Quote:
|
| All times are GMT -4. The time now is 00:19. |
Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.