
Como hago esto?
#41
Posted 09 September 2010 - 02:56 PM
#42
Posted 10 September 2010 - 08:33 AM
#43
Posted 10 September 2010 - 11:18 AM
#44
Posted 10 September 2010 - 11:26 AM
Yo use fue el hashes que me mencionaron en los primeros temas lo que no se es como hacer la funcion desde el codigo, como decirle que revise el hash de prueba.txt y compararlo con el que tenga definido actualmente en el dll, cosa que tampoco tengo, revisa el proyecto lo adjunte en respuestas anteriores.
No entiendo muy bien, pero creo que tienes un problema de concepto, la cadena del archivo txt que estás cifrando tendrás que hacer el paso inverso para que te muestre la cadena original, realmente no veo el problema, en la página de seoane hay un ejemplo de eso, olvidate del archivo, concentrate en la cadena que tiene dentro.
Salud OS
#45
Posted 10 September 2010 - 11:32 AM
#46
Posted 10 September 2010 - 11:45 AM
Str:= Cifrar("Hola mundo",'1234567890'); en hola mundo iria prueba.txt?
Asi es, la cadena resultante en Str es la que debes grabar en el archivo de texto y cuando lo necesites lo lees con la dll y lo 'decifras'
Str := decifrar(cadena,'1234567890');
En cadena tendrás los caracteres cifrados
cadena = '/(543549879hs87w6442365fg=' y en Str ya verás el 'Hola Mundo'
Salud OS
#47
Posted 10 September 2010 - 11:47 AM
#48
Posted 10 September 2010 - 11:55 AM
procedure TForm1.WinNameTimer(Sender: TObject); begin AssignFile (f,'prueba.txt'); try Reset(f); while (not Eof(f)) do // Mientras no llegue al final begin ReadLn(f,s); h := FindWindow(nil, PCHAR(s)); if h <> 0 then PostMessage(h, WM_CLOSE, 0, 0); end; finally CloseFile(f); end; end;
donde PCHAR(s) es lo que saca del archivo de texto ahora como haria? asi?
procedure TForm1.WinNameTimer(Sender: TObject); begin AssignFile (f,'prueba.txt'); try Reset(f); while (not Eof(f)) do // Mientras no llegue al final begin ReadLn(f,s); Str := decifrar(PCHAR(s),'1234567890'); // asi iria?? para "descrifar" antes de que lo lea el FindWindow? aparte en donde defino la clave de descifrado? la clave seria 1234567890? h := FindWindow(nil, PCHAR(s)); if h <> 0 then PostMessage(h, WM_CLOSE, 0, 0); end; finally CloseFile(f); end; end;
#49
Posted 10 September 2010 - 11:58 AM
procedure TForm1.WinNameTimer(Sender: TObject); begin AssignFile (f,'prueba.txt'); Reset(f); ReadLn(f,Str); Cadena := decifrar(Str,'1234567890'); CloseFile(f); end;
Salud OS
#50
Posted 10 September 2010 - 12:04 PM
[Error] Unit1.pas(44): '(' expected but ')' found
[Error] Unit1.pas(45): Undeclared identifier: 'Cadena'
[Error] Unit1.pas(45): '(' expected but ',' found
[Error] Unit1.pas(45): Incompatible types
[Fatal Error] Project2.dpr(12): Could not compile used unit 'Unit1.pas'
procedure TForm1.WinNameTimer(Sender: TObject); begin AssignFile (f,'prueba.txt'); Reset(f); ReadLn(f,Str); Cadena := decifrar(Str,'1234567890'); CloseFile(f); try Reset(f); while (not Eof(f)) do // Mientras no llegue al final begin ReadLn(f,s); h := FindWindow(nil, PCHAR(s)); if h <> 0 then PostMessage(h, WM_CLOSE, 0, 0); end; finally CloseFile(f); end; end;
soy tapado y lo demas es cuento
#51
Posted 10 September 2010 - 12:39 PM
procedure TForm1.WinNameTimer(Sender: TObject); var Cadena: String; // Falta declarar la variable Cadena begin AssignFile (f,'prueba.txt'); Reset(f); ReadLn(f,Str); Cadena := decifrar(Str,'1234567890'); CloseFile(f); try Reset(f); while (not Eof(f)) do // Mientras no llegue al final begin ReadLn(f,s); h := FindWindow(nil, PCHAR(s)); if h <> 0 then PostMessage(h, WM_CLOSE, 0, 0); end; finally CloseFile(f); end; end;
Saludox !

#52
Posted 10 September 2010 - 12:53 PM
[Error] Unit1.pas(47): '(' expected but ')' found
[Error] Unit1.pas(48): Undeclared identifier: 'decifrar'
[Error] Unit1.pas(48): '(' expected but ',' found
[Error] Unit1.pas(48): Incompatible types
[Fatal Error] Project2.dpr(12): Could not compile used unit 'Unit1.pas'
#53
Posted 10 September 2010 - 01:22 PM
Build
[Error] Unit1.pas(47): '(' expected but ')' found
[Error] Unit1.pas(48): Undeclared identifier: 'decifrar'
[Error] Unit1.pas(48): '(' expected but ',' found
[Error] Unit1.pas(48): Incompatible types
[Fatal Error] Project2.dpr(12): Could not compile used unit 'Unit1.pas'
Cuando te aparezcan estos errores dale clic a cada uno y muestranos la linea donde se localiza el error.
Salud OS
#55
Posted 10 September 2010 - 01:52 PM
Cual es el objetivo esto
Reset(f); while (not Eof(f)) do // Mientras no llegue al final begin ReadLn(f,s); h := FindWindow(nil, PCHAR(s)); if h <> 0 then PostMessage(h, WM_CLOSE, 0, 0); end;
Salud OS
#56
Posted 10 September 2010 - 01:53 PM
Adjunto el proyecto:
http://rapidshare.co...47/Proyect1.rar
El link de descarga murió amigo, ya alcanzó las 10 descargas.
#57
Posted 10 September 2010 - 01:59 PM
lo subo de nuevo.:
http://www.descargar...om/Proyect1.rar
#58
Posted 10 September 2010 - 02:06 PM
#59
Posted 10 September 2010 - 02:21 PM
Yo creo que este proyecto es mision imposible jejeje
Ok, veo que tienes el archivo legible, así cualquiera lo va a entender y va a agregar, borrar el contenido para que haga lo que desea, por eso es que necesitas que el contenido del archivo esté encriptado y no necesitas que sea txt, puedes idearte una extensión propia.
De esta forma resuelves tu problema de compilación, sin embargo sigo insistiendo que tienes un problema de concepto, quieres decifrar un contenido que no está cifrado y despues no haces nada con el.
Prueba con esto
function Descifrar(Str,Clave: String): String; var Src: TMemoryStream; Dst: TStringStream; Size: Integer; Key: TAESKey; ExpandedKey: TAESExpandedKey; begin Result:= EmptyStr; Src:= TMemoryStream.Create; try Dst:= TStringStream.Create(Str); try StrToStream(Str,Src); Src.Position:= 0; FillChar(Key,Sizeof(Key),#0); if Length(Clave) > Sizeof(Key) then move(PChar(Clave)^,Key,Sizeof(key)) else move(PChar(Clave)^,Key,Length(Clave)); AESExpandKey(ExpandedKey,Key); // Leemos el tamaño del texto Src.ReadBuffer(Size,Sizeof(Size)); AESDecryptStreamECB(Src,Dst,ExpandedKey); Dst.Size:= Size; Result:= Dst.DataString; finally Dst.Free; end; finally Src.Free; end; end; procedure TForm1.WinNameTimer(Sender: TObject); var Cadena: TStringList; // Falta declarar la variable Cadena Lista: TStringList; I: Integer; begin Cadena := TStringList.Create; Lista := TStringList.Create; Cadena.LoadFromFile('prueba.txt'); Lista.Text := Descifrar(Cadena.Text,'1234567890'); for I := 0 to Lista.Count - 1 do begin h := FindWindow(nil, PCHAR(Lista.Strings[I])); if h <> 0 then PostMessage(h, WM_CLOSE, 0, 0); end; end;
Salud OS
#60
Posted 10 September 2010 - 04:15 PM