CriderTechnologies.SecurityValidation
1.0.0
dotnet add package CriderTechnologies.SecurityValidation --version 1.0.0
NuGet\Install-Package CriderTechnologies.SecurityValidation -Version 1.0.0
<PackageReference Include="CriderTechnologies.SecurityValidation" Version="1.0.0" />
<PackageVersion Include="CriderTechnologies.SecurityValidation" Version="1.0.0" />
<PackageReference Include="CriderTechnologies.SecurityValidation" />
paket add CriderTechnologies.SecurityValidation --version 1.0.0
#r "nuget: CriderTechnologies.SecurityValidation, 1.0.0"
#:package CriderTechnologies.SecurityValidation@1.0.0
#addin nuget:?package=CriderTechnologies.SecurityValidation&version=1.0.0
#tool nuget:?package=CriderTechnologies.SecurityValidation&version=1.0.0
CriderTechnologies.SecurityValidation
A lightweight .NET 8 library for verifying payment status from your server. Designed for use across Crider Technologies client projects, this library periodically pings a backend endpoint to confirm that a client has paid in full. Once verification is received, the checker stops all future requests.
๐ง Installation
Install via NuGet Package Manager:
dotnet add package CriderTechnologies.SecurityValidation
๐ Usage
using CriderTechnologies.SecurityValidation;
var validator = new Validator(
licenseKey: "your-license-key",
checkUrl: "https://yourserver.com/api/payment-status"
);
// Optionally check status:
if (!checker.IsValid)
{
Console.WriteLine("Client is not paid. Restricting functionality...");
}
โ๏ธ Configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
licenseKey |
string |
โ | Unique key identifying the client or license. |
checkUrl |
string |
โ | The server endpoint to query payment status. |
interval |
TimeSpan? |
โ | Interval between checks (default: 12 hours). |
The endpoint should return the string paid-in-full when the client is fully licensed. Once this is detected, all future checks stop automatically.
โ Server Response Format
The server should return a plain text response like:
paid-in-full
Anything else is treated as "not paid."
๐งผ Cleanup
The PaymentChecker implements IAsyncDisposable for clean disposal:
await validator.DisposeAsync();
๐ Security Recommendations
- Use HTTPS for all communication.
- Validate license keys on the server.
- Consider using HMAC or API key authentication to prevent misuse.
๐ฆ Publishing Notes
This library is intended for internal use at Crider Technologies LLC. If distributing externally, ensure your endpoint logic and key management are appropriately secured.
๐ License
MIT License. See LICENSE for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|