Skip to content

Commit 969a0d1

Browse files
author
Cory Thompson
committed
Change access modifiers for utility functions.
1 parent a0ae9de commit 969a0d1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

WebPush/Util/ECKeyHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace WebPush.Util
1111
{
12-
public static class ECKeyHelper
12+
internal static class ECKeyHelper
1313
{
1414
public static ECPrivateKeyParameters GetPrivateKey(byte[] privateKey)
1515
{

WebPush/Util/Encryptor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace WebPush.Util
1212
{
1313
// @LogicSoftware
1414
// Originally from https://github.com/LogicSoftware/WebPushEncryption/blob/master/src/Encryptor.cs
15-
public static class Encryptor
15+
internal static class Encryptor
1616
{
1717
private static readonly RandomNumberGenerator RandomNumberProvider = RandomNumberGenerator.Create();
1818

WebPush/Util/JWSSigner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace WebPush.Util
1111
{
12-
public class JWSSigner
12+
internal class JWSSigner
1313
{
1414
private readonly ECPrivateKeyParameters _privateKey;
1515

WebPush/Util/UrlBase64.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace WebPush.Util
44
{
5-
public static class UrlBase64
5+
internal static class UrlBase64
66
{
77
/// <summary>
88
/// Decodes a url-safe base64 string into bytes

0 commit comments

Comments
 (0)