EnClair Class Reference

Permet de faire transiter les messages en clair. More...

#include <EnClair.h>

Inheritance diagram for EnClair:

Inheritance graph
[legend]
Collaboration diagram for EnClair:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 EnClair ()
void SetCle (string cle)
 Permet de définir la clé de cryptage.
string Crypter (string msg) const
 Crypter la chaine (Pas de cryptage).
string Decrypter (string msg) const
 Decrypter la chaine (Pas de décryptage).

Detailed Description

Permet de faire transiter les messages en clair.

Definition at line 34 of file EnClair.h.


Constructor & Destructor Documentation

EnClair::EnClair (  )  [inline]

Definition at line 36 of file EnClair.h.

00036 {};


Member Function Documentation

void EnClair::SetCle ( string  cle  )  [inline, virtual]

Permet de définir la clé de cryptage.

Non utilisé ici.

Parameters:
cle 

Implements Cryptage.

Definition at line 42 of file EnClair.h.

00042 {}

string EnClair::Crypter ( string  msg  )  const [inline, virtual]

Crypter la chaine (Pas de cryptage).

Parameters:
msg La chaine à crypter
Returns:
La chaine cryptée

Implements Cryptage.

Definition at line 49 of file EnClair.h.

00049                                         {
00050                 return msg;
00051         }

string EnClair::Decrypter ( string  msg  )  const [inline, virtual]

Decrypter la chaine (Pas de décryptage).

Parameters:
msg La chaine à décrypter
Returns:
La chaine décryptée

Implements Cryptage.

Definition at line 58 of file EnClair.h.

00058                                           {
00059                 return msg;
00060         }


The documentation for this class was generated from the following file:
Generated on Wed Jan 2 14:02:02 2008 for Pacman by  doxygen 1.5.1