Maxim Liven
Maxim Liven
> * ES256Algorithm I've created factory with this code ```cs var algo = new ES256Algorithm(publicKeyTask.Result, privateKeyTask.Result); return new DelegateAlgorithmFactory(context => algo); ``` And it still doesn't work. ``` [ERROR] An...
It's strange but when I've created new console project and include only `Jwt.Net` this code've worked. ```cs await Task.WhenAll(publicKeyTask, privateKeyTask); var algo = new ES256Algorithm(publicKeyTask.Result, privateKeyTask.Result); var factory = new...
Yes. It's another one. I think we should start another issue with this. ### Stacktrace ```log EXCEPTION: System.Reflection.TargetParameterCountException: Parameter count mismatch. at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters,...
Okay. I can create algorithm instance by myself to mock `IAlgorithmFactory` and it works. Its pretty nice workaround. But what's with original `ECDSAAlgorithmFactory`? Any plans to fix the bug? @abatishchev...
Whether it is planned to be added to the target platforms .net 6 for JWT Extensions.AspNetCore and JWT Extensions.DependencyInjection?
Nice example @hartmark . But where can I get secret for `ECDsa`? I've created it with `openssl` and don't have any secret.
Sometimes I need IOptions for configurating jobs. I'm looking forward to realease IServiceProvider feature.
Still no progress?
Is there a way to update these settings after setting it up?