Skip to content

Commit

Permalink
practica de vigenere done, final
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshinsamue committed Feb 25, 2019
1 parent 7a8abe5 commit ff8cd43
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 0 deletions.
Binary file added Vigenere/.vs/Vigenere/DesignTimeBuild/.dtbcache
Binary file not shown.
Binary file modified Vigenere/.vs/Vigenere/v15/.suo
Binary file not shown.
Binary file modified Vigenere/.vs/Vigenere/v15/Server/sqlite3/storage.ide-wal
Binary file not shown.
5 changes: 5 additions & 0 deletions Vigenere/Vigenere/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ static void Main(string[] args)
Console.WriteLine("introduzca el mensaje a encriptar: "); // pedimos el mensaje a encriptar y lo guardamos
mensaje=Console.ReadLine();
mensaje=mensaje.ToUpper();
while (mensaje.Contains(" "))
{
mensaje = mensaje.Replace(" ", "");
}

Console.WriteLine("Introduzca la clave con la que encriptar: "); // pedimos la clave con la que encriptar y la guardamos
clave = Console.ReadLine();
clave=clave.ToUpper();
Expand Down
Binary file modified Vigenere/Vigenere/bin/Debug/Vigenere.exe
Binary file not shown.
Binary file modified Vigenere/Vigenere/bin/Debug/Vigenere.pdb
Binary file not shown.
Binary file modified Vigenere/Vigenere/obj/Debug/Vigenere.exe
Binary file not shown.
Binary file modified Vigenere/Vigenere/obj/Debug/Vigenere.pdb
Binary file not shown.

0 comments on commit ff8cd43

Please sign in to comment.