Skip to content

Commit ee4e659

Browse files
committed
Moved BigInteger to Binary folder
1 parent a8387e3 commit ee4e659

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

MLAPI/MLAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
</Reference>
7979
</ItemGroup>
8080
<ItemGroup>
81-
<Compile Include="Data\BigInteger.cs" />
8281
<Compile Include="Data\Channel.cs" />
8382
<Compile Include="Data\AttributeMessageMode.cs" />
8483
<Compile Include="Data\UnsignedIntegerArrayExtensions.cs" />
@@ -109,6 +108,7 @@
109108
<Compile Include="MonoBehaviours\Prototyping\NetworkedAnimator.cs" />
110109
<Compile Include="MonoBehaviours\Prototyping\NetworkedNavMeshAgent.cs" />
111110
<Compile Include="NetworkingManagerComponents\Binary\Arithmetic.cs" />
111+
<Compile Include="NetworkingManagerComponents\Binary\BigInteger.cs" />
112112
<Compile Include="NetworkingManagerComponents\Binary\BitReader.cs" />
113113
<Compile Include="NetworkingManagerComponents\Binary\BitWriter.cs" />
114114
<Compile Include="NetworkingManagerComponents\Binary\BitStream.cs" />

MLAPI/Data/BigInteger.cs renamed to MLAPI/NetworkingManagerComponents/Binary/BigInteger.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
BigInteger Class Version 1.03
33
44
Copyright (c) 2002 Chew Keong TAN All rights reserved.
@@ -25,7 +25,7 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2525
using System;
2626
using System.Security.Cryptography;
2727

28-
namespace MLAPI.Data
28+
namespace MLAPI.Internal
2929
{
3030
/// <summary>
3131
/// This is a BigInteger class. Holds integer that is more than 64-bit (long).

MLAPI/NetworkingManagerComponents/Cryptography/DiffieHellman.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#if !DISABLE_CRYPTOGRAPHY
2-
3-
using MLAPI.Data;
42
using System;
53
using System.Security.Cryptography;
64
using System.Text;
5+
using MLAPI.Internal;
76
using UnityEngine;
87

98
namespace MLAPI.Cryptography

MLAPI/NetworkingManagerComponents/Cryptography/EllipticCurve.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#if !DISABLE_CRYPTOGRAPHY
2-
32
using MLAPI.Data;
43
using System;
54
using System.Collections.Generic;
5+
using MLAPI.Internal;
66

77
namespace MLAPI.Cryptography
88
{

0 commit comments

Comments
 (0)