[Ajuda] Encriptador
#1

Alguem me manda um encriptador de senha que funcione...E me explique onde devo colocar por favor pessoal ja tentei varios e nenhum deu certo Tentei Esse e Essemais nenhum funfo
Reply
#2

@Upp
Reply
#3

PHP код:
#include <dudb>
new encriptador udb_hash(params); 
Reply
#4

Quote:
Originally Posted by Vinicius_TroLL
Посмотреть сообщение
@Upp
Vai msn quero falar com tigo.
Reply
#5

Quote:
Originally Posted by cesar_******
Посмотреть сообщение
PHP код:
#include <dudb>
new encriptador udb_hash(params); 
Isso sу encripta simbolos como [ e ] -.-
Reply
#6

um negуcio assim serve
pawn Код:
EncriptarSaporra(string[]){
    for(new i; i< strlen(string); i++){
    if(string[i] == "a" || string[i] == "e" || string[i] == "i" || string[i] == "o" || string[i] == "u"){
        strins(string,"&vgb$2@brdduhaw><nbwh?",i);
    }
    return string;
}
Reply
#7

N deu me ajudem ai please
Reply
#8

Quais includes vc usa todas!
Reply
#9

tambйm preciso, up.
Reply
#10

stock Encriptar(texto[]) // Encriptando
{
new SenhaEncriptada[100];
for(new x = 0; x <= strlen(texto); x++)
{
SenhaEncriptada[x] = (texto[x] * 2);
}
return SenhaEncriptada;
}

stock Desencriptar(texto[]) // Desencriptando
{
new Senha[100];
for(new x = 0; x <= strlen(texto); x++)
{
Senha[x] = (texto[x] / 2);
}
return Senha;
}

se eu ajudei , +rep por favor
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)