Skip to content

Commit 17ddd57

Browse files
authored
Merge pull request #12 from johnkellyoxford/dev
Dev
2 parents 9658bf3 + 961e435 commit 17ddd57

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Documentation:
44

5+
## RIGHT NOW!!
6+
* Build header spec
7+
* Input sanitisation and error handling
58

69
## To do
710
* Let user know when the decryption has not taken place due to incorrect pwd
@@ -10,9 +13,8 @@
1013
* .crypt header files
1114
* Create documentation and tutorial
1215
* create a microsoft installer application with certificates --> trust
13-
* Sell rip-off usb drives with this content on
1416

1517
## Updates
1618
* Add error handling if encryption/decryption fails
1719

18-
"Copied this from John's cause why not" @nightraven3142
20+
"Copied this from John's cause why not" @nightraven3142

src/UI/MainWindow.xaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@
1717
</Grid.ColumnDefinitions>
1818
<ComboBox HorizontalAlignment="Left" Margin="26,53.04,0,0" VerticalAlignment="Top" Width="286" Height="25.96" x:Name="DropDown" Grid.ColumnSpan="2"/>
1919
<CheckBox Content="File?" HorizontalAlignment="Left" Margin="177.695,122.941,0,0" VerticalAlignment="Top" RenderTransformOrigin="-0.14,0.464" Click="CheckBox_Click" Grid.Column="1"/>
20-
<TextBox HorizontalAlignment="Left" Height="23" Margin="26,214.04,0,0" TextWrapping="Wrap" Text="File Path" VerticalAlignment="Top" Width="216" x:Name="FileTxtBox" Grid.ColumnSpan="2"/>
20+
<TextBox HorizontalAlignment="Left" Height="23" Margin="26,214.04,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="216" x:Name="FileTxtBox" Grid.ColumnSpan="2"/>
2121
<Button Content="Browse" HorizontalAlignment="Left" Margin="156,214.04,0,0" VerticalAlignment="Top" Width="75" Height="23" Click="Button_Click" Grid.Column="1"/>
22-
<Button Content="Encrypt" HorizontalAlignment="Left" Margin="50,317.08,0,0" VerticalAlignment="Top" Width="101" Height="41.96" Click="Encrypt_Click" Grid.Column="1"/>
23-
<TextBox HorizontalAlignment="Left" Height="23" Margin="26,143.039,0,0" TextWrapping="Wrap" Text="Input Pwd" VerticalAlignment="Top" Width="286" x:Name="InpTxtBox" Grid.ColumnSpan="2"/>
22+
<Button Content="Encrypt" HorizontalAlignment="Left" Margin="50,317,0,0" VerticalAlignment="Top" Width="101" Height="42" Click="Encrypt_Click" Grid.Column="1"/>
23+
<TextBox HorizontalAlignment="Left" Height="23" Margin="26,143.039,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="286" x:Name="InpTxtBox" Grid.ColumnSpan="2"/>
24+
<Label x:Name="EncryptOutput" Grid.Column="1" HorizontalAlignment="Left" Margin="50,271,0,0" VerticalAlignment="Top" Height="41" Width="101"/>
25+
<Label Content="Enter password:" HorizontalAlignment="Left" Margin="26,112,0,0" VerticalAlignment="Top" Width="100" Grid.ColumnSpan="2"/>
26+
<Label Content="Encrypted file location:" HorizontalAlignment="Left" Margin="26,183,0,0" VerticalAlignment="Top" Width="131" Grid.ColumnSpan="2"/>
2427
</Grid>
2528
</TabItem>
2629
<TabItem Header="Decryption">

0 commit comments

Comments
 (0)