All the documentation and examples I've seen all use C# code to generate the secret, like this:
new Secret("secret".Sha256())
This is fine for an initial setup and inserting into the database on startup, but what if I want to add a secret directly to the database at run time. Preferably I'd like to give instructions to a customer that doesn't involve any code.
I've tried using online tools to hash the string then Base64 encode the string but it's not matching what the code generates so I think I'm missing a step.