Skip to content

Commit ea0014d

Browse files
committed
Code Cleanup
1 parent 8d77a08 commit ea0014d

7 files changed

+380
-412
lines changed

WebPush.Test/JWSSignerTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public void TestGenerateSignature()
2525
jwtPayload.Add("exp", 1);
2626
jwtPayload.Add("sub", "subject");
2727

28-
var signer = new JWSSigner(privateKey);
28+
var signer = new JwsSigner(privateKey);
2929
var token = signer.GenerateSignature(header, jwtPayload);
3030

3131
var tokenParts = token.Split('.');

WebPush.Test/WebPushClientTest.cs

+2-5
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,9 @@ public void TestSetGcmApiKey()
5959
[TestMethod]
6060
public void TestSetGCMAPIKeyEmptyString()
6161
{
62-
WebPushClient client = new WebPushClient();
62+
var client = new WebPushClient();
6363

64-
Assert.ThrowsException<ArgumentException>(delegate
65-
{
66-
client.SetGcmApiKey("");
67-
});
64+
Assert.ThrowsException<ArgumentException>(delegate { client.SetGcmApiKey(""); });
6865
}
6966

7067
[TestMethod]

WebPush/Util/Encryptor.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public static EncryptionResult Encrypt(byte[] userKey, byte[] userSecret, byte[]
5555
private static byte[] GenerateSalt(int length)
5656
{
5757
var salt = new byte[length];
58-
System.Random random = new System.Random();
58+
var random = new Random();
5959
random.NextBytes(salt);
6060
return salt;
6161
}
@@ -93,6 +93,7 @@ public static byte[] HKDFSecondStep(byte[] key, byte[] info, int length)
9393
{
9494
Array.Resize(ref result, length);
9595
}
96+
9697
return result;
9798
}
9899

@@ -111,6 +112,7 @@ public static byte[] ConvertInt(int number)
111112
{
112113
Array.Reverse(output);
113114
}
115+
114116
return output;
115117
}
116118

@@ -138,7 +140,7 @@ public HmacSha256(byte[] key)
138140

139141
public byte[] ComputeHash(byte[] value)
140142
{
141-
byte[] resBuf = new byte[_hmac.GetMacSize()];
143+
var resBuf = new byte[_hmac.GetMacSize()];
142144
_hmac.BlockUpdate(value, 0, value.Length);
143145
_hmac.DoFinal(resBuf, 0);
144146

WebPush/Util/JWSSigner.cs WebPush/Util/JwsSigner.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

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

16-
public JWSSigner(ECPrivateKeyParameters privateKey)
16+
public JwsSigner(ECPrivateKeyParameters privateKey)
1717
{
1818
_privateKey = privateKey;
1919
}
@@ -29,7 +29,7 @@ public string GenerateSignature(Dictionary<string, object> header, Dictionary<st
2929
var securedInput = SecureInput(header, payload);
3030
var message = Encoding.UTF8.GetBytes(securedInput);
3131

32-
byte[] hashedMessage =sha256Hash(message);
32+
var hashedMessage = Sha256Hash(message);
3333

3434
var signer = new ECDsaSigner();
3535
signer.Init(true, _privateKey);
@@ -48,15 +48,15 @@ public string GenerateSignature(Dictionary<string, object> header, Dictionary<st
4848
}
4949

5050
var signature = UrlBase64.Encode(a.Concat(b).ToArray());
51-
return string.Format("{0}.{1}", securedInput, signature);
51+
return $"{securedInput}.{signature}";
5252
}
5353

5454
private static string SecureInput(Dictionary<string, object> header, Dictionary<string, object> payload)
5555
{
5656
var encodeHeader = UrlBase64.Encode(Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(header)));
5757
var encodePayload = UrlBase64.Encode(Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(payload)));
5858

59-
return string.Format("{0}.{1}", encodeHeader, encodePayload);
59+
return $"{encodeHeader}.{encodePayload}";
6060
}
6161

6262
private static byte[] ByteArrayPadLeft(byte[] src, int size)
@@ -67,11 +67,11 @@ private static byte[] ByteArrayPadLeft(byte[] src, int size)
6767
return dst;
6868
}
6969

70-
private static byte[] sha256Hash(byte[] message)
70+
private static byte[] Sha256Hash(byte[] message)
7171
{
72-
Sha256Digest sha256Digest = new Sha256Digest();
72+
var sha256Digest = new Sha256Digest();
7373
sha256Digest.BlockUpdate(message, 0, message.Length);
74-
byte[] hash = new byte[sha256Digest.GetDigestSize()];
74+
var hash = new byte[sha256Digest.GetDigestSize()];
7575
sha256Digest.DoFinal(hash, 0);
7676
return hash;
7777
}

WebPush/VapidHelper.cs

+10-14
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ public static VapidDetails GenerateVapidKeys()
1515
var results = new VapidDetails();
1616

1717
var keys = ECKeyHelper.GenerateKeys();
18-
var publicKey = ((ECPublicKeyParameters)keys.Public).Q.GetEncoded(false);
19-
var privateKey = ((ECPrivateKeyParameters)keys.Private).D.ToByteArrayUnsigned();
18+
var publicKey = ((ECPublicKeyParameters) keys.Public).Q.GetEncoded(false);
19+
var privateKey = ((ECPrivateKeyParameters) keys.Private).D.ToByteArrayUnsigned();
2020

2121
results.PublicKey = UrlBase64.Encode(publicKey);
2222
results.PrivateKey = UrlBase64.Encode(ByteArrayPadLeft(privateKey, 32));
@@ -49,23 +49,19 @@ public static Dictionary<string, string> GetVapidHeaders(string audience, string
4949
expiration = UnixTimeNow() + 43200;
5050
}
5151

52-
var header = new Dictionary<string, object>();
53-
header.Add("typ", "JWT");
54-
header.Add("alg", "ES256");
52+
var header = new Dictionary<string, object> {{"typ", "JWT"}, {"alg", "ES256"}};
5553

56-
var jwtPayload = new Dictionary<string, object>();
57-
jwtPayload.Add("aud", audience);
58-
jwtPayload.Add("exp", expiration);
59-
jwtPayload.Add("sub", subject);
54+
var jwtPayload = new Dictionary<string, object> {{"aud", audience}, {"exp", expiration}, {"sub", subject}};
6055

6156
var signingKey = ECKeyHelper.GetPrivateKey(decodedPrivateKey);
6257

63-
var signer = new JWSSigner(signingKey);
58+
var signer = new JwsSigner(signingKey);
6459
var token = signer.GenerateSignature(header, jwtPayload);
6560

66-
var results = new Dictionary<string, string>();
67-
results.Add("Authorization", "WebPush " + token);
68-
results.Add("Crypto-Key", "p256ecdsa=" + publicKey);
61+
var results = new Dictionary<string, string>
62+
{
63+
{"Authorization", "WebPush " + token}, {"Crypto-Key", "p256ecdsa=" + publicKey}
64+
};
6965

7066
return results;
7167
}
@@ -143,7 +139,7 @@ public static void ValidatePrivateKey(string privateKey)
143139
private static long UnixTimeNow()
144140
{
145141
var timeSpan = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0);
146-
return (long)timeSpan.TotalSeconds;
142+
return (long) timeSpan.TotalSeconds;
147143
}
148144

149145
private static byte[] ByteArrayPadLeft(byte[] src, int size)

WebPush/WebPush.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard1.1;netstandard2.0;net45;net46</TargetFrameworks>

0 commit comments

Comments
 (0)