diff --git a/SystemExtensions.NetStandard.Security.Tests/CryptoRngProviderTests.cs b/SystemExtensions.NetStandard.Security.Tests/CryptoRngProviderTests.cs index da2a390..bb06e99 100644 --- a/SystemExtensions.NetStandard.Security.Tests/CryptoRngProviderTests.cs +++ b/SystemExtensions.NetStandard.Security.Tests/CryptoRngProviderTests.cs @@ -1,7 +1,7 @@ using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Linq; -using System.Rng; +using System.Security.Rng; namespace SystemExtensions.NetStandard.Security.Tests { diff --git a/SystemExtensions.NetStandard.Security.Tests/Rfc2898DeriveBytesPasswordHashingServiceTests.cs b/SystemExtensions.NetStandard.Security.Tests/Rfc2898DeriveBytesPasswordHashingServiceTests.cs index 2973a6f..6435968 100644 --- a/SystemExtensions.NetStandard.Security.Tests/Rfc2898DeriveBytesPasswordHashingServiceTests.cs +++ b/SystemExtensions.NetStandard.Security.Tests/Rfc2898DeriveBytesPasswordHashingServiceTests.cs @@ -1,7 +1,7 @@ using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; -using System.Hashing; +using System.Security.Hashing; using System.Threading.Tasks; namespace SystemExtensions.NetStandard.Security.Tests diff --git a/SystemExtensions.NetStandard.Security.Tests/SecureStringTests.cs b/SystemExtensions.NetStandard.Security.Tests/SecureStringTests.cs index 315619c..190598d 100644 --- a/SystemExtensions.NetStandard.Security.Tests/SecureStringTests.cs +++ b/SystemExtensions.NetStandard.Security.Tests/SecureStringTests.cs @@ -1,7 +1,6 @@ using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; -using System; -using System.Encryption; +using System.Security.Encryption; namespace SystemExtensions.NetStandard.Security.Tests { diff --git a/SystemExtensions.NetStandard.Security/Encryption/SecureString.cs b/SystemExtensions.NetStandard.Security/Encryption/SecureString.cs index 94a896c..568e973 100644 --- a/SystemExtensions.NetStandard.Security/Encryption/SecureString.cs +++ b/SystemExtensions.NetStandard.Security/Encryption/SecureString.cs @@ -1,7 +1,7 @@ using System.Security.Cryptography; using System.Text; -namespace System.Encryption +namespace System.Security.Encryption { public sealed class SecureString { diff --git a/SystemExtensions.NetStandard.Security/Hashing/IPasswordHashingService.cs b/SystemExtensions.NetStandard.Security/Hashing/IPasswordHashingService.cs index adc6a6f..063e93f 100644 --- a/SystemExtensions.NetStandard.Security/Hashing/IPasswordHashingService.cs +++ b/SystemExtensions.NetStandard.Security/Hashing/IPasswordHashingService.cs @@ -1,6 +1,6 @@ using System.Threading.Tasks; -namespace System.Hashing +namespace System.Security.Hashing { public interface IPasswordHashingService { diff --git a/SystemExtensions.NetStandard.Security/Hashing/Rfc2898DeriveBytesPasswordHashingService.cs b/SystemExtensions.NetStandard.Security/Hashing/Rfc2898DeriveBytesPasswordHashingService.cs index b15ac16..17efb82 100644 --- a/SystemExtensions.NetStandard.Security/Hashing/Rfc2898DeriveBytesPasswordHashingService.cs +++ b/SystemExtensions.NetStandard.Security/Hashing/Rfc2898DeriveBytesPasswordHashingService.cs @@ -1,7 +1,7 @@ using System.Security.Cryptography; using System.Threading.Tasks; -namespace System.Hashing +namespace System.Security.Hashing { public sealed class Rfc2898DeriveBytesPasswordHashingService : IPasswordHashingService { diff --git a/SystemExtensions.NetStandard.Security/Rng/CryptoRngProvider.cs b/SystemExtensions.NetStandard.Security/Rng/CryptoRngProvider.cs index f219161..76e2aef 100644 --- a/SystemExtensions.NetStandard.Security/Rng/CryptoRngProvider.cs +++ b/SystemExtensions.NetStandard.Security/Rng/CryptoRngProvider.cs @@ -1,6 +1,6 @@ using System.Security.Cryptography; -namespace System.Rng +namespace System.Security.Rng { public sealed class CryptoRngProvider : ICryptoRngProvider, IDisposable { diff --git a/SystemExtensions.NetStandard.Security/Rng/ICryptoRngProvider.cs b/SystemExtensions.NetStandard.Security/Rng/ICryptoRngProvider.cs index fd25834..ff5c412 100644 --- a/SystemExtensions.NetStandard.Security/Rng/ICryptoRngProvider.cs +++ b/SystemExtensions.NetStandard.Security/Rng/ICryptoRngProvider.cs @@ -1,4 +1,4 @@ -namespace System.Rng +namespace System.Security.Rng { public interface ICryptoRngProvider { diff --git a/SystemExtensions.NetStandard.Security/SystemExtensions.NetStandard.Security.csproj b/SystemExtensions.NetStandard.Security/SystemExtensions.NetStandard.Security.csproj index d063654..ba2c38c 100644 --- a/SystemExtensions.NetStandard.Security/SystemExtensions.NetStandard.Security.csproj +++ b/SystemExtensions.NetStandard.Security/SystemExtensions.NetStandard.Security.csproj @@ -7,7 +7,7 @@ LICENSE true System - 1.2.1 + 1.2.2 Alexandru Macocian https://github.com/AlexMacocian/SystemExtensions