Skip to content

Commit 578d3d5

Browse files
authored
Merge pull request #13 from VirgilSecurity/develop
Develop
2 parents c24c50b + 6823988 commit 578d3d5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+231
-219
lines changed

LICENSE

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2019, Virgil's passw0rd
3+
Copyright (C) 2015-2019 Virgil Security Inc.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without
@@ -27,3 +27,5 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2727
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2828
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2929
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
31+
Lead Maintainer: Virgil Security Inc. <support@virgilsecurity.com>

Passw0rd.Tests/Asn1HelperTests.cs renamed to PureKit.Tests/Asn1HelperTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
namespace Passw0rd.Tests
1+
namespace Virgil.PureKit.Tests
22
{
33
using System.Collections.Generic;
44
using System.Linq;
5-
using Passw0rd.Utils;
6-
using Passw0rd.Utils.Asn1;
5+
using Virgil.PureKit.Utils;
6+
using Virgil.PureKit.Utils.Asn1;
77
using Xunit;
88

99
public class Asn1HelperTests

Passw0rd.Tests/CryptoCompatibilityTests.cs renamed to PureKit.Tests/CryptoCompatibilityTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
namespace Passw0rd.Tests
1+
namespace Virgil.PureKit.Tests
22
{
33
using Org.BouncyCastle.Crypto.Digests;
44
using Org.BouncyCastle.Crypto.Generators;
55
using Org.BouncyCastle.Crypto.Parameters;
6-
using Passw0rd.Phe;
7-
using Passw0rd.Utils;
6+
using Virgil.PureKit.Phe;
7+
using Virgil.PureKit.Utils;
88

99
using Xunit;
1010

File renamed without changes.

Passw0rd.Tests/PheClientTest.cs renamed to PureKit.Tests/PheClientTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
namespace Passw0rd.Tests
1+
namespace Virgil.PureKit.Tests
22
{
33
using System;
44
using System.Linq;
55
using NSubstitute;
6-
using Passw0rd.Phe;
7-
using Passw0rd.Utils;
6+
using Virgil.PureKit.Phe;
7+
using Virgil.PureKit.Utils;
88
using Xunit;
99

1010
public class PheClientTest

Passw0rd.Tests/PheCryptoTests.cs renamed to PureKit.Tests/PheCryptoTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Passw0rd.Tests
1+
namespace Virgil.PureKit.Tests
22
{
33
using System;
44
using System.Collections.Generic;
@@ -9,8 +9,8 @@
99
using Org.BouncyCastle.Math;
1010
using Org.BouncyCastle.Math.EC;
1111
using Org.BouncyCastle.Security;
12-
using Passw0rd.Phe;
13-
using Passw0rd.Utils;
12+
using Virgil.PureKit.Phe;
13+
using Virgil.PureKit.Utils;
1414

1515
using Xunit;
1616
using Xunit.Abstractions;

Passw0rd.Tests/PointTest.cs renamed to PureKit.Tests/PointTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
namespace Passw0rd.Tests
1+
namespace Virgil.PureKit.Tests
22
{
33
using System;
44
using Org.BouncyCastle.Math;
55
using Org.BouncyCastle.Math.EC;
66
using Org.BouncyCastle.Security;
7-
using Passw0rd.Phe;
7+
using Virgil.PureKit.Phe;
88
using Xunit;
99

1010
public class PointTest

Passw0rd.Tests/ProtocolContextTests.cs renamed to PureKit.Tests/ProtocolContextTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
namespace Passw0rd.Tests
1+
namespace Virgil.PureKit.Tests
22
{
33
using System;
44
using System.Linq;
55
using Microsoft.Extensions.Configuration;
66
using NSubstitute;
7-
using Passw0rd.Client;
8-
using Passw0rd.Client.Connection;
7+
using Virgil.PureKit.Client;
8+
using Virgil.PureKit.Client.Connection;
99
using Xunit;
1010

1111
public class ProtocolContextTests

Passw0rd.Tests/ProtocolTests.cs renamed to PureKit.Tests/ProtocolTests.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
namespace Passw0rd.Tests
1+
namespace Virgil.PureKit.Tests
22
{
33
using System;
44
using System.Threading.Tasks;
55
using Google.Protobuf;
66
using Microsoft.Extensions.Configuration;
7-
using Passw0rd;
8-
using Passw0rd.Client;
9-
using Passw0rd.Client.Connection;
10-
using Passw0rd.Utils;
7+
using Virgil.PureKit;
8+
using Virgil.PureKit.Client;
9+
using Virgil.PureKit.Client.Connection;
10+
using Virgil.PureKit.Utils;
1111
using Xunit;
1212

1313
public class ProtocolTests

Passw0rd.Tests/Passw0rd.Tests.csproj renamed to PureKit.Tests/PureKit.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22-
<ProjectReference Include="..\Passw0rd\Passw0rd.csproj" />
22+
<ProjectReference Include="..\PureKit\PureKit.csproj" />
2323
</ItemGroup>
2424
<ItemGroup>
2525
<Compile Remove="PasswordRecordTests.cs" />

0 commit comments

Comments
 (0)