mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-21 00:29:29 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7eed1ca466 |
@@ -1,7 +1,7 @@
|
|||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Rng;
|
using System.Security.Rng;
|
||||||
|
|
||||||
namespace SystemExtensions.NetStandard.Security.Tests
|
namespace SystemExtensions.NetStandard.Security.Tests
|
||||||
{
|
{
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using System;
|
using System;
|
||||||
using System.Hashing;
|
using System.Security.Hashing;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace SystemExtensions.NetStandard.Security.Tests
|
namespace SystemExtensions.NetStandard.Security.Tests
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using System;
|
using System.Security.Encryption;
|
||||||
using System.Encryption;
|
|
||||||
|
|
||||||
namespace SystemExtensions.NetStandard.Security.Tests
|
namespace SystemExtensions.NetStandard.Security.Tests
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace System.Encryption
|
namespace System.Security.Encryption
|
||||||
{
|
{
|
||||||
public sealed class SecureString
|
public sealed class SecureString
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace System.Hashing
|
namespace System.Security.Hashing
|
||||||
{
|
{
|
||||||
public interface IPasswordHashingService
|
public interface IPasswordHashingService
|
||||||
{
|
{
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace System.Hashing
|
namespace System.Security.Hashing
|
||||||
{
|
{
|
||||||
public sealed class Rfc2898DeriveBytesPasswordHashingService : IPasswordHashingService
|
public sealed class Rfc2898DeriveBytesPasswordHashingService : IPasswordHashingService
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
|
|
||||||
namespace System.Rng
|
namespace System.Security.Rng
|
||||||
{
|
{
|
||||||
public sealed class CryptoRngProvider : ICryptoRngProvider, IDisposable
|
public sealed class CryptoRngProvider : ICryptoRngProvider, IDisposable
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace System.Rng
|
namespace System.Security.Rng
|
||||||
{
|
{
|
||||||
public interface ICryptoRngProvider
|
public interface ICryptoRngProvider
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
||||||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
||||||
<RootNamespace>System</RootNamespace>
|
<RootNamespace>System</RootNamespace>
|
||||||
<Version>1.2.1</Version>
|
<Version>1.2.2</Version>
|
||||||
<Authors>Alexandru Macocian</Authors>
|
<Authors>Alexandru Macocian</Authors>
|
||||||
<RepositoryUrl>https://github.com/AlexMacocian/SystemExtensions</RepositoryUrl>
|
<RepositoryUrl>https://github.com/AlexMacocian/SystemExtensions</RepositoryUrl>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user