Skip to content

Commit 36ff2c9

Browse files
committed
namespace: adjust namespace for easy accessibility
1 parent c11f2e0 commit 36ff2c9

6 files changed

Lines changed: 24 additions & 7 deletions

File tree

SafeCrypt.sln

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.33214.272
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34322.80
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SafeCrypt", "SafeCrypt.csproj", "{204CA507-752E-43A6-A094-794E40ABAE1F}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SafeCrypt", "SafeCrypt.csproj", "{204CA507-752E-43A6-A094-794E40ABAE1F}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "safecrypt-testapp", "..\safecrypt-testapp\safecrypt-testapp.csproj", "{76D17C56-5643-4148-A504-8D6E24D24CAD}"
79
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -15,6 +17,10 @@ Global
1517
{204CA507-752E-43A6-A094-794E40ABAE1F}.Debug|Any CPU.Build.0 = Debug|Any CPU
1618
{204CA507-752E-43A6-A094-794E40ABAE1F}.Release|Any CPU.ActiveCfg = Release|Any CPU
1719
{204CA507-752E-43A6-A094-794E40ABAE1F}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{76D17C56-5643-4148-A504-8D6E24D24CAD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{76D17C56-5643-4148-A504-8D6E24D24CAD}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{76D17C56-5643-4148-A504-8D6E24D24CAD}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{76D17C56-5643-4148-A504-8D6E24D24CAD}.Release|Any CPU.Build.0 = Release|Any CPU
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

src/Encryption/AesEncryption/Encrypting.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
using System;
2-
using SafeCrypt.src.Encryption.AesEncryption.Models;
32
using SafeCrypt.AesEncryption;
43
using SafeCrypt.Helpers;
4+
using SafeCrypt.Models;
5+
using SafeCrypt.src.Encryption.AesEncryption.Models;
56

67
namespace SafeCrypt.Encrypt
78
{
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace SafeCrypt.Models
6+
{
7+
public class DecryptionData
8+
{
9+
}
10+
}

src/Encryption/AesEncryption/Models/EncryptionData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Text;
44

5-
namespace SafeCrypt.src.Encryption.AesEncryption.Models
5+
namespace SafeCrypt.Models
66
{
77
/// <summary>
88
/// Represents the data and initialization vector (IV) used in encryption.

src/Encryption/AesEncryption/Models/EncryptionParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.ComponentModel.DataAnnotations;
44
using System.Text;
55

6-
namespace SafeCrypt.src.Encryption.AesEncryption.Models
6+
namespace SafeCrypt.Models
77
{
88
public class EncryptionParameters
99
{

src/Helpers/Validators.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using SafeCrypt.src.Encryption.AesEncryption.Models;
1+
using SafeCrypt.Models;
22
using System;
33
using System.Collections.Generic;
44
using System.Text;

0 commit comments

Comments
 (0)