文件名称: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.
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.