ajout fichiers
This commit is contained in:
11
admin/scripts_distants/windows_server/code.php
Normal file
11
admin/scripts_distants/windows_server/code.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
// ce script sert à chiffrer le mot de passe administrateur du domaine
|
||||
include('lib.php');
|
||||
$Cle = "maSuperCle";
|
||||
$MonTexte = "mot de passe admin";
|
||||
$TexteCrypte = Crypte($MonTexte,$Cle);
|
||||
$TexteClair = Decrypte($TexteCrypte,$Cle);
|
||||
echo "Texte original : $MonTexte <Br>";
|
||||
echo "Texte crypté : $TexteCrypte <Br>";
|
||||
echo "Texte décrypté : $TexteClair <Br>";
|
||||
?>
|
||||
Reference in New Issue
Block a user