@@ -15,8 +15,8 @@ public static VapidDetails GenerateVapidKeys()
15
15
var results = new VapidDetails ( ) ;
16
16
17
17
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 ( ) ;
20
20
21
21
results . PublicKey = UrlBase64 . Encode ( publicKey ) ;
22
22
results . PrivateKey = UrlBase64 . Encode ( ByteArrayPadLeft ( privateKey , 32 ) ) ;
@@ -49,23 +49,19 @@ public static Dictionary<string, string> GetVapidHeaders(string audience, string
49
49
expiration = UnixTimeNow ( ) + 43200 ;
50
50
}
51
51
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" } } ;
55
53
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 } } ;
60
55
61
56
var signingKey = ECKeyHelper . GetPrivateKey ( decodedPrivateKey ) ;
62
57
63
- var signer = new JWSSigner ( signingKey ) ;
58
+ var signer = new JwsSigner ( signingKey ) ;
64
59
var token = signer . GenerateSignature ( header , jwtPayload ) ;
65
60
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
+ } ;
69
65
70
66
return results ;
71
67
}
@@ -143,7 +139,7 @@ public static void ValidatePrivateKey(string privateKey)
143
139
private static long UnixTimeNow ( )
144
140
{
145
141
var timeSpan = DateTime . UtcNow - new DateTime ( 1970 , 1 , 1 , 0 , 0 , 0 ) ;
146
- return ( long ) timeSpan . TotalSeconds ;
142
+ return ( long ) timeSpan . TotalSeconds ;
147
143
}
148
144
149
145
private static byte [ ] ByteArrayPadLeft ( byte [ ] src , int size )
0 commit comments