summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2/DotNetOpenAuth.OAuth2.csproj
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-28 19:56:30 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-28 20:01:00 -0700
commitea4325d172d8a2bc925ed362f1c35560b8c1f13e (patch)
treea04960f4cddd7f2223df83b03e89300c5051434c /src/DotNetOpenAuth.OAuth2/DotNetOpenAuth.OAuth2.csproj
parent01d8c73f818d30b20f86630d35d230b5168215d1 (diff)
downloadDotNetOpenAuth-ea4325d172d8a2bc925ed362f1c35560b8c1f13e.zip
DotNetOpenAuth-ea4325d172d8a2bc925ed362f1c35560b8c1f13e.tar.gz
DotNetOpenAuth-ea4325d172d8a2bc925ed362f1c35560b8c1f13e.tar.bz2
Work toward support JWT access tokens.origin/jwt
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2/DotNetOpenAuth.OAuth2.csproj')
-rw-r--r--src/DotNetOpenAuth.OAuth2/DotNetOpenAuth.OAuth2.csproj11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OAuth2/DotNetOpenAuth.OAuth2.csproj b/src/DotNetOpenAuth.OAuth2/DotNetOpenAuth.OAuth2.csproj
index 696d8a9..01bea78 100644
--- a/src/DotNetOpenAuth.OAuth2/DotNetOpenAuth.OAuth2.csproj
+++ b/src/DotNetOpenAuth.OAuth2/DotNetOpenAuth.OAuth2.csproj
@@ -20,6 +20,16 @@
<ItemGroup>
<Compile Include="Configuration\OAuth2SectionGroup.cs" />
<Compile Include="GlobalSuppressions.cs" />
+ <Compile Include="OAuth2\Crypto\JwtRsaShaSigningAlgorithm.cs" />
+ <Compile Include="OAuth2\Crypto\JweHeader.cs" />
+ <Compile Include="OAuth2\Crypto\JweRsaEncryptionAlgorithm.cs" />
+ <Compile Include="OAuth2\Crypto\JwsHeader.cs" />
+ <Compile Include="OAuth2\Crypto\JwtEncryptionAlgorithm.cs" />
+ <Compile Include="OAuth2\Crypto\JsonWebAlgorithms.cs" />
+ <Compile Include="OAuth2\Crypto\JwtHeader.cs" />
+ <Compile Include="OAuth2\Crypto\JwtHmacShaSigningAlgorithm.cs" />
+ <Compile Include="OAuth2\Crypto\JwtMessageBase.cs" />
+ <Compile Include="OAuth2\Crypto\JwtSigningAlgorithm.cs" />
<Compile Include="OAuth2\AccessToken.cs" />
<Compile Include="OAuth2\ChannelElements\AuthorizationDataBag.cs" />
<Compile Include="OAuth2\ChannelElements\ClientAuthenticationResult.cs" />
@@ -28,6 +38,7 @@
<Compile Include="OAuth2\ChannelElements\ScopeEncoder.cs" />
<Compile Include="OAuth2\ChannelElements\IAuthorizationDescription.cs" />
<Compile Include="OAuth2\ChannelElements\IAuthorizationCarryingRequest.cs" />
+ <Compile Include="OAuth2\JsonWebTokenFormatter.cs" />
<Compile Include="OAuth2\Messages\AccessProtectedResourceRequest.cs" />
<Compile Include="OAuth2\Messages\UnauthorizedResponse.cs" />
<Compile Include="OAuth2\OAuthUtilities.cs" />