Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
0xhmn committed Mar 26, 2017
1 parent 232e105 commit 7b571e5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
Binary file added Capture.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# SimpleEncrypt

## How to use:
- Just compile the solution and run the file:

## Sample Env
![Sample Env](Capture.PNG)

## Features
- Using AES algorithm for encryption.
- You can save the chosen password by checking the checkbox. The password will be saved on your Desktop.

## Security warnings
- **You are responsible for your own actions.** Use this code at your own risk. *changing the code or picking the wrong file can harm your computer.*
- This software is open sourced under a [GNU Lesser General Public License license](https://www.gnu.org/licenses/lgpl-3.0.en.html).
Expand Down
7 changes: 3 additions & 4 deletions SimpleEncrypt/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SimpleEncrypt"
mc:Ignorable="d"
Title="SimpleEncrypt" Width="400" Height="344" ResizeMode="NoResize" FontFamily="Calibri" Icon="se.png">
mc:Ignorable="d" Width="400" Height="344" ResizeMode="NoResize" FontFamily="Calibri" Icon="se.png">
<StackPanel>
<TextBlock x:Name="enc_textBox" Height="23" Margin="20,20,20,0" FontSize="16" Text="Choose file/files to Encrypt:"/>
<TextBlock x:Name="enc_textBox" Height="23" Margin="20,20,20,0" FontSize="16" Text="Choose File/Files to Encrypt:"/>
<StackPanel Margin="30,10,20,0" Orientation="Horizontal">
<Label x:Name="pass_label" Content="Choose a password:"/>
<TextBox x:Name="enc_password" Margin="10,0,30,0" Width="156"/>
Expand All @@ -20,7 +19,7 @@

<Separator Style="{StaticResource {x:Static ToolBar.SeparatorStyleKey}}" Margin="0,30,0,30" />

<TextBlock x:Name="dec_textBox" Height="23" Margin="20,0,20,0" FontSize="16" Text="Choose file/files to Decrypt:"/>
<TextBlock x:Name="dec_textBox" Height="23" Margin="20,0,20,0" FontSize="16" Text="Choose File/Files to Decrypt:"/>
<StackPanel Margin="30,10,20,0" Orientation="Horizontal">
<Label x:Name="dec_label" Content="Enter the password:"/>
<TextBox x:Name="dec_password" Margin="10,0,30,0" Width="156"/>
Expand Down
Binary file modified SimpleEncrypt/se.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7b571e5

Please sign in to comment.