Skip to content

Commit

Permalink
testing and minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Espen authored and Espen committed Nov 3, 2017
1 parent 7fb0bc2 commit 638ca0f
Show file tree
Hide file tree
Showing 40 changed files with 3,149 additions and 3,136 deletions.
Binary file modified .vs/RabbitHole/v14/.suo
Binary file not shown.
1,348 changes: 674 additions & 674 deletions LICENSE

Large diffs are not rendered by default.

128 changes: 64 additions & 64 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion RabbitHole/Domain/Volume.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public int CalculateVolumeMinimumSize()
{
MemoryStream memoryStream = new MemoryStream();
Volume volume = new Volume();
volume.Serialize(memoryStream, "test", 1);
volume.Serialize(memoryStream, "test", AlgorithmNo);

return (int)memoryStream.Length - volume.Offset;
}
Expand Down
6 changes: 3 additions & 3 deletions RabbitHole/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Program

static void Main(string[] args)
{
Console.WriteLine(" ---=== RabbitHole v.0.1.2 Commitant 2017 ===---");
Console.WriteLine(" ---=== RabbitHole v.0.1.3 Commitant 2017 ===---");

DisplayArchiveAndVolumeNames();

Expand Down Expand Up @@ -248,8 +248,8 @@ private static void CreateNewArchive(string[] parts)


Console.WriteLine("Finished creating archive.");

Console.WriteLine("Please choose crypto algoritm: 1=AES, 2=Serpent, 3=Twofish");
Console.Write("Please choose crypto algoritm: 1=AES, 2=Serpent, 3=Twofish: ");
var algorithmNo = int.Parse((Console.ReadLine()));


Expand Down
Binary file modified RabbitHole/bin/Debug/RabbitHole.exe
Binary file not shown.
Binary file modified RabbitHole/bin/Debug/RabbitHole.pdb
Binary file not shown.
10 changes: 5 additions & 5 deletions RabbitHole/bin/Debug/RabbitHole.vshost.exe.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
22 changes: 11 additions & 11 deletions RabbitHole/bin/Debug/RabbitHole.vshost.exe.manifest
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
304 changes: 152 additions & 152 deletions RabbitHole/gpl-3.0.rtf

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions RabbitHole/obj/Debug/RabbitHole.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ D:\Google Drive\develop\GitRepos\RabbitHole\RabbitHole\bin\Debug\RabbitHole.exe.
D:\Google Drive\develop\GitRepos\RabbitHole\RabbitHole\obj\Debug\RabbitHole.exe
D:\Google Drive\develop\GitRepos\RabbitHole\RabbitHole\obj\Debug\RabbitHole.pdb
C:\Google Drive\develop\GitRepos\RabbitHole\RabbitHole\obj\Debug\RabbitHole.csprojResolveAssemblyReference.cache
D:\Google Drive\develop\GitRepos\RabbitHole\RabbitHole\bin\Debug\RabbitHole.exe
D:\Google Drive\develop\GitRepos\RabbitHole\RabbitHole\bin\Debug\RabbitHole.pdb
D:\Google Drive\develop\GitRepos\RabbitHole\RabbitHole\bin\Debug\BouncyCastle.Crypto.dll
D:\Google Drive\develop\GitRepos\RabbitHole\RabbitHole\obj\Debug\RabbitHole.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file modified RabbitHole/obj/Debug/RabbitHole.exe
Binary file not shown.
Binary file modified RabbitHole/obj/Debug/RabbitHole.pdb
Binary file not shown.
Loading

0 comments on commit 638ca0f

Please sign in to comment.