//Permet de calculer un hash MD5 pour stocker/comparer les mots de passe sur une personne public static void EncrypterMpPersonne(ref Personne personne) { personne.ConfirmPassword = EncrypterChaine(personne.ConfirmPassword); personne.MP = EncrypterChaine(personne.MP); }
public PersEtuProg(Personne pers, EtuProgEtude etuprog) { p = pers; epe = etuprog; }