CS
VB, VB.NET
ASP.NET,ASP
C, C++
ColdFusion
PHP
Javascript
Delphi
Flash
Java
Graphisme
Irc
Assembleur
C#
Mobilité
SQL
Foxpro
Python
Regex
Flex
Windev
Ce site au démarrage
Derniers codes
Outils
Divers
Connexion
Visual Basic
ASP
C++
ColdFusion
PHP
Javascript
Delphi
Flash
Java
Graphisme
Irc
Assembleur
C#
Mobilité
SQL
Foxpro
Python
Regex
Flex
Statistiques ;-)
Crédits
>>
Sites CodeS-SourceS
Visual basic
C++
C#
Java
PHP
ASP
ASP.NET
ColdFusion
Delphi
Javascript
Flash
Flex / AIR
Graphisme
Assembleur
IRC
Mobilité
SQL
FoxPro
Python
CodeS-SourceS ToolBox
Convertisseur C#<->VB
Colorisation de Code
Table ASCII
Trouver un fichier de code source :
Version Française -
English Version
Accueil
>
Delphi
>
LYNX : CHIFFREMENT À BLOC/FLUX, EXEMPLE INCLUS
>
LynxExample.dpr
LYNX : CHIFFREMENT À BLOC/FLUX, EXEMPLE INCLUS
LynxExample.dpr
Informations sur ce code source
Code Source
LYNX : CHIFFREMENT À BLOC/FLUX, EXEMPLE INCLUS
Auteur
Bacterius
Fichier
LynxExample.dpr en
Delphi
Publié le
12/06/2010
Mis à jour le
14/06/2010
Salut à tous, voici un nouvel algorithme de chiffrement à bloc ou à flux, Lynx, qui vous permettra de chiffrer ("crypter") des données quelconques de façon sûre. Bon, d'abord, cet algorithme peut théoriquement chiffrer n'importe-quoi, c'est à la bas
Fichier :
LynxExample.dpr
Nombre de lignes :
19 lignes
Afficher ce fichier en plein écran
program
LynxExample;
uses
Forms,
Main
in
'Main.pas' {MainForm},
Lynx
in
'Lynx.pas',
MD5Api
in
'MD5Api.pas',
MD5Core
in
'MD5Core.pas';
{$R *.res}
{$R WinThemes.res}
begin
Application.Initialize;
Application.Title := 'Chiffrement Lynx';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end
.