├── .gitignore ├── Czar.IdentityServer4.sln ├── LICENSE ├── sample └── Czar.sample.SqlServer │ ├── Application │ ├── IRepository │ │ └── ICzarUsersRepository.cs │ ├── IServices │ │ └── ICzarUsersServices.cs │ ├── Ids4 │ │ ├── CzarProfileService.cs │ │ └── CzarResourceOwnerPasswordValidator.cs │ ├── Modules │ │ └── CzarModule.cs │ ├── Repository │ │ └── CzarUsersRepository.cs │ └── Services │ │ └── CzarUsersServices.cs │ ├── Czar.sample.SqlServer.csproj │ ├── Infrastructure │ ├── Config │ │ └── CzarConfig.cs │ └── Models │ │ └── CzarUsers.cs │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── tempkey.rsa │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ └── banner3.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── src └── Czar.IdentityServer4 ├── Caches └── CzarRedisCache.cs ├── Czar.IdentityServer4.csproj ├── Entities ├── ApiResource.cs ├── ApiResourceClaim.cs ├── ApiScope.cs ├── ApiScopeClaim.cs ├── ApiSecret.cs ├── Client.cs ├── ClientClaim.cs ├── ClientCorsOrigin.cs ├── ClientGrantType.cs ├── ClientIdPRestriction.cs ├── ClientPostLogoutRedirectUri.cs ├── ClientProperty.cs ├── ClientRedirectUri.cs ├── ClientScope.cs ├── ClientSecret.cs ├── IdentityClaim.cs ├── IdentityResource.cs ├── PersistedGrant.cs ├── Secret.cs └── UserClaim.cs ├── Extensions └── IdentityServerDapperBuilderExtensions.cs ├── HostedServices ├── TokenCleanup.cs └── TokenCleanupHost.cs ├── Interfaces └── IPersistedGrants.cs ├── Mappers ├── ApiResourceMapperProfile.cs ├── ApiResourceMappers.cs ├── ClientMapperProfile.cs ├── ClientMappers.cs ├── IdentityResourceMapperProfile.cs ├── IdentityResourceMappers.cs ├── PersistedGrantMapperProfile.cs └── PersistedGrantMappers.cs ├── Options └── DapperStoreOptions.cs ├── ResponseHandling ├── CzarToken.cs └── CzarTokenResponseGenerator.cs ├── Stores ├── MySql │ ├── MySqlClientStore.cs │ ├── MySqlPersistedGrantStore.cs │ ├── MySqlPersistedGrants.cs │ └── MySqlResourceStore.cs └── SqlServer │ ├── SqlServerClientStore.cs │ ├── SqlServerPersistedGrantStore.cs │ ├── SqlServerPersistedGrants.cs │ └── SqlServerResourceStore.cs └── Validation └── CzarIntrospectionRequestValidator.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/.gitignore -------------------------------------------------------------------------------- /Czar.IdentityServer4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/Czar.IdentityServer4.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/LICENSE -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Application/IRepository/ICzarUsersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Application/IRepository/ICzarUsersRepository.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Application/IServices/ICzarUsersServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Application/IServices/ICzarUsersServices.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Application/Ids4/CzarProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Application/Ids4/CzarProfileService.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Application/Ids4/CzarResourceOwnerPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Application/Ids4/CzarResourceOwnerPasswordValidator.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Application/Modules/CzarModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Application/Modules/CzarModule.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Application/Repository/CzarUsersRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Application/Repository/CzarUsersRepository.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Application/Services/CzarUsersServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Application/Services/CzarUsersServices.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Czar.sample.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Czar.sample.SqlServer.csproj -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Infrastructure/Config/CzarConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Infrastructure/Config/CzarConfig.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Infrastructure/Models/CzarUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Infrastructure/Models/CzarUsers.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Program.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/Startup.cs -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/appsettings.Development.json -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/appsettings.json -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/tempkey.rsa -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/css/site.css -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/favicon.ico -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/js/site.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /sample/Czar.sample.SqlServer/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/sample/Czar.sample.SqlServer/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Caches/CzarRedisCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Caches/CzarRedisCache.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Czar.IdentityServer4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Czar.IdentityServer4.csproj -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ApiResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ApiResource.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ApiResourceClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ApiResourceClaim.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ApiScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ApiScope.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ApiScopeClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ApiScopeClaim.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ApiSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ApiSecret.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/Client.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientClaim.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientCorsOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientCorsOrigin.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientGrantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientGrantType.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientIdPRestriction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientIdPRestriction.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientPostLogoutRedirectUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientPostLogoutRedirectUri.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientProperty.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientRedirectUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientRedirectUri.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientScope.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/ClientSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/ClientSecret.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/IdentityClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/IdentityClaim.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/IdentityResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/IdentityResource.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/PersistedGrant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/PersistedGrant.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/Secret.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Entities/UserClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Entities/UserClaim.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Extensions/IdentityServerDapperBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Extensions/IdentityServerDapperBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/HostedServices/TokenCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/HostedServices/TokenCleanup.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/HostedServices/TokenCleanupHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/HostedServices/TokenCleanupHost.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Interfaces/IPersistedGrants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Interfaces/IPersistedGrants.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Mappers/ApiResourceMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Mappers/ApiResourceMapperProfile.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Mappers/ApiResourceMappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Mappers/ApiResourceMappers.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Mappers/ClientMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Mappers/ClientMapperProfile.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Mappers/ClientMappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Mappers/ClientMappers.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Mappers/IdentityResourceMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Mappers/IdentityResourceMapperProfile.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Mappers/IdentityResourceMappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Mappers/IdentityResourceMappers.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Mappers/PersistedGrantMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Mappers/PersistedGrantMapperProfile.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Mappers/PersistedGrantMappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Mappers/PersistedGrantMappers.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Options/DapperStoreOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Options/DapperStoreOptions.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/ResponseHandling/CzarToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/ResponseHandling/CzarToken.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/ResponseHandling/CzarTokenResponseGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/ResponseHandling/CzarTokenResponseGenerator.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Stores/MySql/MySqlClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Stores/MySql/MySqlClientStore.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Stores/MySql/MySqlPersistedGrantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Stores/MySql/MySqlPersistedGrantStore.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Stores/MySql/MySqlPersistedGrants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Stores/MySql/MySqlPersistedGrants.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Stores/MySql/MySqlResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Stores/MySql/MySqlResourceStore.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Stores/SqlServer/SqlServerClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Stores/SqlServer/SqlServerClientStore.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Stores/SqlServer/SqlServerPersistedGrantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Stores/SqlServer/SqlServerPersistedGrantStore.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Stores/SqlServer/SqlServerPersistedGrants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Stores/SqlServer/SqlServerPersistedGrants.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Stores/SqlServer/SqlServerResourceStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Stores/SqlServer/SqlServerResourceStore.cs -------------------------------------------------------------------------------- /src/Czar.IdentityServer4/Validation/CzarIntrospectionRequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinyancao/Czar.IdentityServer4/HEAD/src/Czar.IdentityServer4/Validation/CzarIntrospectionRequestValidator.cs --------------------------------------------------------------------------------