-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJwtAuthenticator.nuspec
More file actions
26 lines (26 loc) · 1.5 KB
/
JwtAuthenticator.nuspec
File metadata and controls
26 lines (26 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<package >
<metadata>
<id>timeracers.JwtAuthenticator</id>
<title>JwtAuthenticator</title>
<version>2.1.1</version>
<authors>Tim Reinagel</authors>
<owners>Tim Reinagel</owners>
<projectUrl>https://github.com/timeracers/JwtAuthenticator</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This is a JWT library. Currently this can verify tokens, check expiration ("exp"), check not before ("nbf"), check subject ("sub"), and can be used with any of these cryptography algorithms: HS256, HS382, HS512. Uses Semantic Versioning starting from 1.1.0</description>
<releaseNotes>Added subject claim validator.</releaseNotes>
<summary>This is a Json Web Token library. Currently this can verify tokens, check expiration, check not before, check subject, and can be used with any of these cryptography algorithms: HS256, HS382, HS512.</summary>
<copyright>Copyright 2017</copyright>
<tags>JWT</tags>
<dependencies>
<dependency id="Newtonsoft.Json" version="10.0.3" />
</dependencies>
</metadata>
<files>
<file src="JwtAuthenticator\bin\Nuget\net46\JwtAuthenticator.dll" target="lib\net46" />
<file src="JwtAuthenticator\bin\Nuget\net46\JwtAuthenticator.pdb" target="lib\net46" />
<file src="JwtAuthenticator\bin\Nuget\netcoreapp1.1\JwtAuthenticator.dll" target="lib\netcoreapp1.1" />
<file src="JwtAuthenticator\bin\Nuget\netcoreapp1.1\JwtAuthenticator.pdb" target="lib\netcoreapp1.1" />
</files>
</package>