-
Notifications
You must be signed in to change notification settings - Fork 0
Home
SharpAccess is a Windows-only authentication and authorization package family for ASP.NET Core on .NET 10. Security behavior lives in SharpAccess.Core; the host selects exactly one supported relational persistence package.
Important
0.9.0-rc.1 is a release candidate for evaluation and integration testing. Stable 1.0.0 is a later, separately gated release.
Note
0.9.0-rc.1 is published on NuGet and has a signed, GitHub-verified tag and GitHub prerelease. Installation commands in this Wiki target that published release candidate. Stable 1.0.0 remains a later, separately gated release.
| Package | Status | Purpose |
|---|---|---|
SharpAccess.Core |
Supported | Authentication, authorization, sessions, JWT access tokens, OpenID Connect, diagnostics, middleware, endpoints, and provider-neutral contracts. |
SharpAccess.Sqlite |
Supported | Zero-infrastructure reference and local/runtime DB provider. |
SharpAccess.Postgres |
Supported | Server DB provider with native Windows evidence for contracts, migrations, recovery, concurrency, query plans, and packaging. |
Install Core plus exactly one provider. SQL Server and MySQL are roadmap candidates only; they are not active packages, projects, registrations, workflows, or support commitments.
- Installation
- Quick Start
- Configuration
- Architecture
- Authentication
- Authorization
- Tokens and Refresh
- OpenID Connect
- SQLite Provider
- PostgreSQL Provider
- Database Migrations
- Operations
- Recovery
- Security
- Quality and Metrics
- Performance and Capacity
- Troubleshooting
- Roadmap
- Contributing
- Windows only.
- .NET 10 SDK selected by
global.json. - PowerShell 7 for repository automation.
- No Bash parity, Linux/macOS support claim, Dockerfile, Compose file, service container, or local container orchestration.
- External DB evidence uses native Windows tooling or an approved managed scratch DB.
flowchart TB
Host["ASP.NET Core host<br/>Windows · .NET 10"] --> Core["SharpAccess.Core<br/>authentication · authorization · sessions · tokens · OIDC"]
Secrets["Host-owned secrets<br/>signing keys · peppers · token-hash keys"] --> Core
External["OIDC and email services"] <--> Core
Core -. provider-neutral contracts .-> Provider["One selected DB provider package<br/>connections · SQL · migrations · transactions"]
Provider --> DB[("Database")]
The host owns transport, trusted proxies, Data Protection topology, secret storage, logging, monitoring, and the selected DB connection.
SharpAccess · Windows · .NET 10 · PowerShell 7 · Repository · Security · License