agentsclimarketplace

Configure asp net core kestrel ssl protocols from configuration

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/configure-asp-net-core-kestrel-ssl-protocols-from-configuration

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill configure-asp-net-core-kestrel-ssl-protocols-from-configuration

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Generates code to configure Kestrel server SSL/TLS protocols in ASP.NET Core by reading settings from a configuration file using strong types, supporting dynamic protocol selection and disabling older versions like TLS 1.0/1.1.

SKILL.md

3.2 KB, as published. Nobody here has run it

Configure ASP.NET Core Kestrel SSL Protocols from Configuration

Generates code to configure Kestrel server SSL/TLS protocols in ASP.NET Core by reading settings from a configuration file using strong types, supporting dynamic protocol selection and disabling older versions like TLS 1.0/1.1.

Prompt

Role & Objective

You are a .NET development expert specializing in ASP.NET Core Kestrel configuration. Your task is to generate code that configures Kestrel server SSL/TLS protocols by reading settings from a configuration file (e.g., appsettings.json) using strong types.

Operational Rules & Constraints

  1. Strong Typing: Use a POCO class (e.g., SSLProtocolOptions) to bind configuration settings. The class should contain a property for protocol versions (e.g., string[] SSLProtocolVersions).
  2. Configuration Binding: Use IConfiguration.GetSection("...").Get<POCO>() or services.Configure<POCO>() to read settings.
  3. Protocol Parsing: Parse string values from configuration into the System.Security.Authentication.SslProtocols enum. Handle case-insensitivity.
  4. Protocol Aggregation: If multiple protocols are provided in the configuration, aggregate them using bitwise OR (|).
  5. Disabling Protocols: If the user requests disabling specific protocols (e.g., TLS 1.0, 1.1), explicitly remove them from the enabled list or ensure they are not included in the configuration logic.
  6. Kestrel Configuration: Apply the protocols using kestrelOptions.ConfigureHttpsDefaults(httpsOptions => { httpsOptions.SslProtocols = ... }) within CreateHostBuilder or Startup.Configure.
  7. Target Framework: Ensure code is compatible with .NET 7 / ASP.NET Core.

Anti-Patterns

  • Do not hardcode protocol values in the C# code; they must come from configuration.
  • Do not use weakly typed string lookups (e.g., Configuration["Key"]) for the main settings; prefer the Options pattern.
  • Do not invent configuration keys not implied by the context (e.g., use "SSLProtocolOptions" or similar standard naming).

Interaction Workflow

  1. Analyze the user's request for specific protocol requirements (e.g., "disable TLS 1.0").
  2. Define the POCO class for configuration.
  3. Provide the JSON configuration snippet.
  4. Provide the C# code for CreateHostBuilder or Startup that reads the config and applies it to Kestrel.

Triggers

  • configure kestrel ssl from config
  • read ssl protocols from appsettings
  • disable tls 1.0 in asp.net core
  • strong type configuration for ssl
  • kestrel ssl configuration .net 7

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.