├── .gitattributes ├── .gitignore ├── Cryptologie ├── Cryptography │ ├── Cryptography.csproj │ ├── DesEncryption.cs │ ├── HMAC.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Cryptologie.sln ├── Demo │ ├── App.config │ ├── Demo.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Originality │ ├── FileOriginality.cs │ ├── Originality.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── readme.md ├── Test │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Test.csproj └── readme.md ├── PasswordGenerator ├── PasswordGenerator.sln ├── PasswordGenerator │ ├── Password.cs │ ├── PasswordGenerator.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── README.md ├── SimpleCoder │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SimpleCoder.cs │ └── UserInterface.csproj └── WinFormsDemonstration │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── UIPass.csproj └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/.gitignore -------------------------------------------------------------------------------- /Cryptologie/Cryptography/Cryptography.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Cryptography/Cryptography.csproj -------------------------------------------------------------------------------- /Cryptologie/Cryptography/DesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Cryptography/DesEncryption.cs -------------------------------------------------------------------------------- /Cryptologie/Cryptography/HMAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Cryptography/HMAC.cs -------------------------------------------------------------------------------- /Cryptologie/Cryptography/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Cryptography/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cryptologie/Cryptologie.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Cryptologie.sln -------------------------------------------------------------------------------- /Cryptologie/Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/App.config -------------------------------------------------------------------------------- /Cryptologie/Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Demo.csproj -------------------------------------------------------------------------------- /Cryptologie/Demo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Form1.Designer.cs -------------------------------------------------------------------------------- /Cryptologie/Demo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Form1.cs -------------------------------------------------------------------------------- /Cryptologie/Demo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Form1.resx -------------------------------------------------------------------------------- /Cryptologie/Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Program.cs -------------------------------------------------------------------------------- /Cryptologie/Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cryptologie/Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Cryptologie/Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /Cryptologie/Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Cryptologie/Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /Cryptologie/Originality/FileOriginality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Originality/FileOriginality.cs -------------------------------------------------------------------------------- /Cryptologie/Originality/Originality.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Originality/Originality.csproj -------------------------------------------------------------------------------- /Cryptologie/Originality/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Originality/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cryptologie/Originality/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Originality/readme.md -------------------------------------------------------------------------------- /Cryptologie/Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Test/App.config -------------------------------------------------------------------------------- /Cryptologie/Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Test/Program.cs -------------------------------------------------------------------------------- /Cryptologie/Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cryptologie/Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/Test/Test.csproj -------------------------------------------------------------------------------- /Cryptologie/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/Cryptologie/readme.md -------------------------------------------------------------------------------- /PasswordGenerator/PasswordGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/PasswordGenerator.sln -------------------------------------------------------------------------------- /PasswordGenerator/PasswordGenerator/Password.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/PasswordGenerator/Password.cs -------------------------------------------------------------------------------- /PasswordGenerator/PasswordGenerator/PasswordGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/PasswordGenerator/PasswordGenerator.csproj -------------------------------------------------------------------------------- /PasswordGenerator/PasswordGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/PasswordGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PasswordGenerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/README.md -------------------------------------------------------------------------------- /PasswordGenerator/SimpleCoder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/SimpleCoder/App.config -------------------------------------------------------------------------------- /PasswordGenerator/SimpleCoder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/SimpleCoder/Program.cs -------------------------------------------------------------------------------- /PasswordGenerator/SimpleCoder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/SimpleCoder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PasswordGenerator/SimpleCoder/SimpleCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/SimpleCoder/SimpleCoder.cs -------------------------------------------------------------------------------- /PasswordGenerator/SimpleCoder/UserInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/SimpleCoder/UserInterface.csproj -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/App.config -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Form1.Designer.cs -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Form1.cs -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Form1.resx -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Program.cs -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Properties/Resources.resx -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/Properties/Settings.settings -------------------------------------------------------------------------------- /PasswordGenerator/WinFormsDemonstration/UIPass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/PasswordGenerator/WinFormsDemonstration/UIPass.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramzham/Cryptography/HEAD/README.md --------------------------------------------------------------------------------