Skip to content

Commit

Permalink
making jwt generation public, reving nuspec to 4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
slorello89 committed Dec 18, 2019
1 parent c10b536 commit fbf94f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Nexmo.Api/Jwt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

namespace Nexmo.Api
{
internal class Jwt
public class Jwt
{
internal static string CreateToken(string appId, string privateKey)
public static string CreateToken(string appId, string privateKey)
{
var tokenData = new byte[64];
var rng = RandomNumberGenerator.Create();
Expand Down
6 changes: 3 additions & 3 deletions Nexmo.Api/Nexmo.Api.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Nexmo.Csharp.Client</id>
<version>4.2.1</version>
<version>4.2.2</version>
<title>Nexmo API Client</title>
<authors>Nexmo</authors>
<owners>Nexmo</owners>
Expand All @@ -12,8 +12,8 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Official C#/.NET wrapper for the Nexmo API</description>
<releaseNotes>
* Fixing NCCO serialization bug
* Setting Microsoft.Extensions.Configuration.* to version 1.1.2
* adding ListOwnNumbers API
* Making basic JWT generation public
</releaseNotes>
<copyright>© Nexmo 2018</copyright>
<tags>SMS voice telephony phone nexmo</tags>
Expand Down

0 comments on commit fbf94f2

Please sign in to comment.