Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
chidokun committed Dec 16, 2015
1 parent 5535634 commit b0e7856
Show file tree
Hide file tree
Showing 15 changed files with 90 additions and 17 deletions.
7 changes: 6 additions & 1 deletion Source code/Encoding/Cipher/AES.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;
using System.Text;

namespace Encoding.Cipher
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Cipher/DES.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;
using System.Text;

namespace Encoding.Cipher
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Cipher/RC2.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;
using System.Text;

namespace Encoding.Cipher
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Cipher/Symmetric.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.IO;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.IO;
using System.Security.Cryptography;
using System;

Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Cipher/TripleDES.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;
using System.Text;

namespace Encoding.Cipher
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Hash/Hash.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;
using System.Text;

namespace Encoding.Hash
Expand Down
8 changes: 6 additions & 2 deletions Source code/Encoding/Hash/MD5.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
using System.Security.Cryptography;
using System.Text;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;

namespace Encoding.Hash
{
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Hash/SHA.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;

namespace Encoding.Hash
{
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Hash/SHA256.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;

namespace Encoding.Hash
{
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Hash/SHA384.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;

namespace Encoding.Hash
{
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Hash/SHA512.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Security.Cryptography;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.Security.Cryptography;

namespace Encoding.Hash
{
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/MenuButton.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.ComponentModel;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;

Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
Expand Down
8 changes: 6 additions & 2 deletions Source code/Encoding/frmAbout.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
using System;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System;
using System.Windows.Forms;
using Encoding.Properties;

namespace Encoding
{
Expand Down
7 changes: 6 additions & 1 deletion Source code/Encoding/frmMain.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System;
/*
Encoding - A mini tool to encrypt and decrypt a plain-text
Copyright (c) 2015 - Nguyễn Tuấn
*/

using System;
using System.Drawing;
using System.Windows.Forms;
using Encoding.Cipher;
Expand Down

0 comments on commit b0e7856

Please sign in to comment.