[Pedido] password codificada
#3

Quote:
Originally Posted by _Zume
Посмотреть сообщение
Este й o ciclo que deseja.

PHP код:
#include <a_samp>
#define SALT_PASS "78sdjs86d2h"
main(){
    new
        
PasswordAbsolute[64 1];
        
    new
        
inputtext[64] = "Hello";
    
// Register password to hash
    
    
SHA256_PassHash(inputtextSALT_PASSPasswordAbsolutesizeof PasswordAbsolute); // MyHash have now the password hashed.
    
    
printf("inputtext hashed:\n\t%s"PasswordAbsolute);
    
    
// Verify Hash
    
    
new
        
inputlogin[64] = "Hell",
        
loginHash[64 1];
        
    
SHA256_PassHash(inputloginSALT_PASSloginHashsizeof loginHash);
    if(!
strcmp(loginHashPasswordAbsolute)){
        print(
"The password is valid");
    }
    else{
        
//
        
print("The password not is same with the PasswordAbsolute");
        
// change inputlogin ->
        
format(inputloginsizeof inputlogin"Hello");
        
        
SHA256_PassHash(inputloginSALT_PASSloginHashsizeof loginHash);
        
// now is correct.
        
        
printf("inputLogin:\n\t%s\n\nPasswordAbsolute:\n\t%s"loginHashPasswordAbsolute);
    }

eu nгo entendi muito bem isso nгo
Reply


Messages In This Thread
password codificada - by zPawnu - 15.09.2015, 00:11
Respuesta: password codificada - by Zume - 15.09.2015, 00:24
Re: Respuesta: password codificada - by zPawnu - 15.09.2015, 00:37
Re: password codificada - by Mandrack_FreeZe - 15.09.2015, 18:58
Re: password codificada - by zPawnu - 15.09.2015, 22:18
Re: password codificada - by Kamper - 15.09.2015, 22:22
Re: password codificada - by SepZ - 15.09.2015, 22:33
Re: password codificada - by zPawnu - 15.09.2015, 22:36

Forum Jump:


Users browsing this thread: 4 Guest(s)