CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Internet/网络编程 Web服务器

文件名称:Web API 授权的两种方式及实例

  • 所属分类:
  • 标签属性:
  • 上传时间:
    2021-11-29
  • 文件大小:
    90.83kb
  • 已下载:
    0次
  • 提 供 者:
  • 相关连接:
  • 下载说明:
    别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容来自于网络,使用问题请自行百度

代码列举了 Web API 授权时的两种方式,除了采用JWT方式,还灵活采用cache这种方式,避免了算法的复杂性,具有很好的操作性;
(系统自动生成,下载前可以参看下载内容)

下载文件列表

压缩包 : jwt-main.zip 列表
jwt-main/
jwt-main/.editorconfig
jwt-main/.gitignore
jwt-main/.pipelines/
jwt-main/.pipelines/build.yml
jwt-main/Directory.Build.props
jwt-main/JWT.sln
jwt-main/JWT.sln.DotSettings
jwt-main/JwtStrongNameKey.snk
jwt-main/LICENSE.md
jwt-main/NuGet.config
jwt-main/README.md
jwt-main/src/
jwt-main/src/JWT.Extensions.AspNetCore/
jwt-main/src/JWT.Extensions.AspNetCore/AuthenticationAppBuilderExtensions.cs
jwt-main/src/JWT.Extensions.AspNetCore/Internal/
jwt-main/src/JWT.Extensions.AspNetCore/Internal/DefaultIdentityFactory.cs
jwt-main/src/JWT.Extensions.AspNetCore/Internal/DefaultTicketFactory.cs
jwt-main/src/JWT.Extensions.AspNetCore/Internal/SystemClockDatetimeProvider.cs
jwt-main/src/JWT.Extensions.AspNetCore/JWT.Extensions.AspNetCore.csproj
jwt-main/src/JWT.Extensions.AspNetCore/JwtAuthenticationDefaults.cs
jwt-main/src/JWT.Extensions.AspNetCore/JwtAuthenticationHandler.cs
jwt-main/src/JWT.Extensions.AspNetCore/JwtAuthenticationOptions.cs
jwt-main/src/JWT.Extensions.AspNetCore/Properties/
jwt-main/src/JWT.Extensions.AspNetCore/Properties/AssemblyInfo.cs
jwt-main/src/JWT.Extensions.Owin/
jwt-main/src/JWT.Extensions.Owin/AppBuilderExtensions.cs
jwt-main/src/JWT.Extensions.Owin/JWT.Extensions.Owin.csproj
jwt-main/src/JWT.Extensions.Owin/JwtAuthenticationMiddleware.cs
jwt-main/src/JWT.Extensions.Owin/Properties/
jwt-main/src/JWT.Extensions.Owin/Properties/AssemblyInfo.cs
jwt-main/src/JWT/
jwt-main/src/JWT/Algorithms/
jwt-main/src/JWT/Algorithms/DelegateAlgorithmFactory.cs
jwt-main/src/JWT/Algorithms/ECDSAAlgorithm.cs
jwt-main/src/JWT/Algorithms/ECDSAAlgorithmFactory.cs
jwt-main/src/JWT/Algorithms/ES256Algorithm.cs
jwt-main/src/JWT/Algorithms/ES384Algorithm.cs
jwt-main/src/JWT/Algorithms/ES512Algorithm.cs
jwt-main/src/JWT/Algorithms/HMACSHA256Algorithm.cs
jwt-main/src/JWT/Algorithms/HMACSHA384Algorithm.cs
jwt-main/src/JWT/Algorithms/HMACSHA512Algorithm.cs
jwt-main/src/JWT/Algorithms/HMACSHAAlgorithm.cs
jwt-main/src/JWT/Algorithms/HMACSHAAlgorithmFactory.cs
jwt-main/src/JWT/Algorithms/IAlgorithmFactory.cs
jwt-main/src/JWT/Algorithms/IAsymmetricAlgorithm.cs
jwt-main/src/JWT/Algorithms/IJwtAlgorithm.cs
jwt-main/src/JWT/Algorithms/JwtAlgorithmFactory.cs
jwt-main/src/JWT/Algorithms/JwtAlgorithmName.cs
jwt-main/src/JWT/Algorithms/RS256Algorithm.cs
jwt-main/src/JWT/Algorithms/RS384Algorithm.cs
jwt-main/src/JWT/Algorithms/RS512Algorithm.cs
jwt-main/src/JWT/Algorithms/RSAlgorithm.cs
jwt-main/src/JWT/Algorithms/RSAlgorithmFactory.cs
jwt-main/src/JWT/Builder/
jwt-main/src/JWT/Builder/ClaimName.cs
jwt-main/src/JWT/Builder/EnumExtensions.cs
jwt-main/src/JWT/Builder/HeaderName.cs
jwt-main/src/JWT/Builder/JwtBuilder.cs
jwt-main/src/JWT/Builder/JwtBuilderExtensions.cs
jwt-main/src/JWT/Builder/JwtData.cs
jwt-main/src/JWT/Builder/JwtHeader.cs
jwt-main/src/JWT/Compatibility/
jwt-main/src/JWT/Compatibility/String.cs
jwt-main/src/JWT/Compatibility/System.Reflection/
jwt-main/src/JWT/Compatibility/System.Reflection/CustomAttributeExtensions.cs
jwt-main/src/JWT/Compatibility/System.Security.Cryptography/
jwt-main/src/JWT/Compatibility/System.Security.Cryptography/HashAlgorithmName.cs
jwt-main/src/JWT/Exceptions/
jwt-main/src/JWT/Exceptions/InvalidTokenPartsException.cs
jwt-main/src/JWT/Exceptions/SignatureVerificationException.cs
jwt-main/src/JWT/Exceptions/TokenExpiredException.cs
jwt-main/src/JWT/IBase64UrlEncoder.cs
jwt-main/src/JWT/IDateTimeProvider.cs
jwt-main/src/JWT/IJsonSerializer.cs
jwt-main/src/JWT/IJwtDecoder.cs
jwt-main/src/JWT/IJwtEncoder.cs
jwt-main/src/JWT/IJwtValidator.cs
jwt-main/src/JWT/Internal/
jwt-main/src/JWT/Internal/EncodingHelper.cs
jwt-main/src/JWT/Internal/StringHelper.cs
jwt-main/src/JWT/JWT.csproj
jwt-main/src/JWT/JwtBase64UrlEncoder.cs
jwt-main/src/JWT/JwtDecoder.cs
jwt-main/src/JWT/JwtDecoderContext.cs
jwt-main/src/JWT/JwtEncoder.cs
jwt-main/src/JWT/JwtParts.cs
jwt-main/src/JWT/JwtValidator.cs
jwt-main/src/JWT/Properties/
jwt-main/src/JWT/Properties/AssemblyInfo.cs
jwt-main/src/JWT/Serializers/
jwt-main/src/JWT/Serializers/JsonNetSerializer.cs
jwt-main/src/JWT/UnixEpoch.cs
jwt-main/src/JWT/UtcDateTimeProvider.cs
jwt-main/tests/
jwt-main/tests/JWT.Extensions.AspNetCore.Tests/
jwt-main/tests/JWT.Extensions.AspNetCore.Tests/JWT.Extensions.AspNetCore.Tests.csproj
jwt-main/tests/JWT.Extensions.AspNetCore.Tests/JwtAuthenticationHandlerIntegrationTests.cs
jwt-main/tests/JWT.Extensions.AspNetCore.Tests/JwtAuthenticationHandlerTests.cs
jwt-main/tests/JWT.Extensions.Owin.Tests/
jwt-main/tests/JWT.Extensions.Owin.Tests/JWT.Extensions.Owin.Tests.csproj
jwt-main/tests/JWT.Extensions.Owin.Tests/JwtAuthenticationMiddlewareTests.cs
jwt-main/tests/JWT.Tests.Common/
jwt-main/tests/JWT.Tests.Common/Algorithms/
jwt-main/tests/JWT.Tests.Common/Algorithms/ECDSAAlgorithmFactoryTests.cs
jwt-main/tests/JWT.Tests.Common/Algorithms/ECDSAAlgorithmTests.cs
jwt-main/tests/JWT.Tests.Common/Algorithms/RSAlgorithmFactoryTests.cs
jwt-main/tests/JWT.Tests.Common/Algorithms/RSAlgorithmTests.cs
jwt-main/tests/JWT.Tests.Common/Builder/
jwt-main/tests/JWT.Tests.Common/Builder/JwtBuilderDecodeTests.cs
jwt-main/tests/JWT.Tests.Common/Builder/JwtBuilderEncodeTests.

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 搜珍网是交换下载平台,只提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。更多...
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或换浏览器;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*快速评论: 推荐 一般 有密码 和说明不符 不是源码或资料 文件不全 不能解压 纯粹是垃圾
*内  容:
*验 证 码:
搜珍网 www.dssz.com