From 0fc24b83070df6390fe57c1f97d0bbd70ed32883 Mon Sep 17 00:00:00 2001 From: Alex Macocian Date: Sun, 8 Sep 2024 17:13:48 +0200 Subject: [PATCH] Fix build issues --- .../Hashing/IMD5HashingService.cs | 4 +--- .../Hashing/ISha1HashingService.cs | 4 +--- .../Hashing/ISha256HashingService.cs | 4 +--- .../Hashing/ISha384HashingService.cs | 4 +--- .../Hashing/ISha512HashingService.cs | 4 +--- .../Hashing/Sha256HashingService.cs | 3 +-- 6 files changed, 6 insertions(+), 17 deletions(-) diff --git a/SystemExtensions.NetStandard.Security/Hashing/IMD5HashingService.cs b/SystemExtensions.NetStandard.Security/Hashing/IMD5HashingService.cs index 969557d..0b3ee84 100644 --- a/SystemExtensions.NetStandard.Security/Hashing/IMD5HashingService.cs +++ b/SystemExtensions.NetStandard.Security/Hashing/IMD5HashingService.cs @@ -1,6 +1,4 @@ -using System.Security.Hashing; - -namespace System.Security.Hashing; +namespace System.Security.Hashing; public interface IMD5HashingService : IHashingService { } diff --git a/SystemExtensions.NetStandard.Security/Hashing/ISha1HashingService.cs b/SystemExtensions.NetStandard.Security/Hashing/ISha1HashingService.cs index 95bbbaa..97cdf05 100644 --- a/SystemExtensions.NetStandard.Security/Hashing/ISha1HashingService.cs +++ b/SystemExtensions.NetStandard.Security/Hashing/ISha1HashingService.cs @@ -1,6 +1,4 @@ -using System.Security.Hashing; - -namespace System.Security.Hashing; +namespace System.Security.Hashing; public interface ISha1HashingService : IHashingService { } diff --git a/SystemExtensions.NetStandard.Security/Hashing/ISha256HashingService.cs b/SystemExtensions.NetStandard.Security/Hashing/ISha256HashingService.cs index 81ea597..0c0d671 100644 --- a/SystemExtensions.NetStandard.Security/Hashing/ISha256HashingService.cs +++ b/SystemExtensions.NetStandard.Security/Hashing/ISha256HashingService.cs @@ -1,6 +1,4 @@ -using System.Security.Hashing; - -namespace System.Security.Hashing; +namespace System.Security.Hashing; public interface ISha256HashingService : IHashingService { } diff --git a/SystemExtensions.NetStandard.Security/Hashing/ISha384HashingService.cs b/SystemExtensions.NetStandard.Security/Hashing/ISha384HashingService.cs index 941c271..9a133a6 100644 --- a/SystemExtensions.NetStandard.Security/Hashing/ISha384HashingService.cs +++ b/SystemExtensions.NetStandard.Security/Hashing/ISha384HashingService.cs @@ -1,6 +1,4 @@ -using System.Security.Hashing; - -namespace System.Security.Hashing; +namespace System.Security.Hashing; public interface ISha384HashingService : IHashingService { } diff --git a/SystemExtensions.NetStandard.Security/Hashing/ISha512HashingService.cs b/SystemExtensions.NetStandard.Security/Hashing/ISha512HashingService.cs index 832d772..a0033b3 100644 --- a/SystemExtensions.NetStandard.Security/Hashing/ISha512HashingService.cs +++ b/SystemExtensions.NetStandard.Security/Hashing/ISha512HashingService.cs @@ -1,6 +1,4 @@ -using System.Security.Hashing; - -namespace System.Security.Hashing; +namespace System.Security.Hashing; public interface ISha512HashingService : IHashingService { } diff --git a/SystemExtensions.NetStandard.Security/Hashing/Sha256HashingService.cs b/SystemExtensions.NetStandard.Security/Hashing/Sha256HashingService.cs index aaead1c..5ee855b 100644 --- a/SystemExtensions.NetStandard.Security/Hashing/Sha256HashingService.cs +++ b/SystemExtensions.NetStandard.Security/Hashing/Sha256HashingService.cs @@ -1,5 +1,4 @@ -using System.Hashing; -using System.Security.Cryptography; +using System.Security.Cryptography; namespace System.Security.Hashing;