PKISharp / ACMESharpCore

An ACME v2 client library for .NET Standard (Let's Encrypt)
MIT License
325 stars 72 forks source link

Implementation Question #74

Open InteXX opened 1 year ago

InteXX commented 1 year ago

I need to generate a wildcard certificate (*.domain.com). I'm looking to the code in your AcmeWildcardNameOrderTests class as an example.

It's unclear to me, however, on how exactly to proceed.

For example, in your first test, Test_Create_Order_ForWildDns(), you're starting off with a call to SetTestContext(), which jumps through quite a few hoops to do its work. The complexities only increase from there.

Does this mean that I'll need to replicate all of that in my own code? Is the context required for basic functionality?

Do you have a simple and concise example showing how to use ACMESharpCore to request a wildcard certificate?