[Ajuda] Encriptador
#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


Messages In This Thread
Encriptador - by Vinicius_TroLL - 25.11.2012, 22:47
Re: Encriptador - by Vinicius_TroLL - 25.11.2012, 23:15
Respuesta: Encriptador - by Parka - 25.11.2012, 23:17
Re: Encriptador - by Petrick™ - 25.11.2012, 23:18
Re: Respuesta: Encriptador - by TreePuncher - 25.11.2012, 23:21
Re: Encriptador - by [JD]BlackFire - 25.11.2012, 23:27
Re: Encriptador - by Vinicius_TroLL - 25.11.2012, 23:51
Re: Encriptador - by Schocc - 26.11.2012, 00:00
Re: Encriptador - by Tiu_DaColombia - 26.11.2012, 00:14
Re: Encriptador - by @LucasVinicius - 26.11.2012, 00:18

Forum Jump:


Users browsing this thread: 2 Guest(s)