Skip to content

Commit 76fea08

Browse files
committed
chore: update namesapce
1 parent e9910d2 commit 76fea08

File tree

7 files changed

+9
-19
lines changed

7 files changed

+9
-19
lines changed

EccSDK/ChameleonHashHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using EccGrpcSDK.models;
1+
using EccSDK.models;
22
using Org.BouncyCastle.Math;
33
using Org.BouncyCastle.Math.EC;
44

5-
namespace EccGrpcSDK;
5+
namespace EccSDK;
66

77
public static class ChameleonHashHelper
88
{

EccSDK/EccGenerator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using EccGrpcSDK.models;
1+
using EccSDK.models;
22
using Org.BouncyCastle.Crypto;
33
using Org.BouncyCastle.Crypto.Generators;
44
using Org.BouncyCastle.Crypto.Parameters;
55
using Org.BouncyCastle.Security;
66

7-
namespace EccGrpcSDK;
7+
namespace EccSDK;
88

99
public static class EccGenerator
1010
{

EccSDK/HashHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Org.BouncyCastle.Crypto.Digests;
33
using Org.BouncyCastle.Math;
44

5-
namespace EccGrpcSDK;
5+
namespace EccSDK;
66

77
public abstract class HashHelper
88
{

EccSDK/IEccGenerator.cs

Lines changed: 0 additions & 10 deletions
This file was deleted.

EccSDK/models/ChameleonHashRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Org.BouncyCastle.Math;
22

3-
namespace EccGrpcSDK.models;
3+
namespace EccSDK.models;
44

55
public class ChameleonHashRequest
66
{

EccSDK/models/KeyPair.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Org.BouncyCastle.Math;
22
using Org.BouncyCastle.Math.EC;
33

4-
namespace EccGrpcSDK.models;
4+
namespace EccSDK.models;
55

66
public class KeyPair
77
{

EccSdkUnitTest/EccSdkTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using EccGrpcSDK;
2-
using EccGrpcSDK.models;
1+
using EccSDK;
2+
using EccSDK.models;
33
using Org.BouncyCastle.Math;
44

55
namespace EccSdkUnitTest;

0 commit comments

Comments
 (0)