You are not logged in.
Pages: 1
Hello.
Could someone familiar with mORMot please have a look at the code in the link below, and tell me if the same thing can be accomplished using Delphi and mORMot? If so, any tips on where to start would be highly appreciated. Thanks!
Offline
As a work around Step1 can be done in external .NET executable or DLL. The result of step1 is a <local generated jwt-token> string what can be used as a client_assertion header value for HTTP/HTTPS client from SynCrtSock
Last edited by mpv (2020-04-25 13:50:53)
Offline
So, if I understand it correctly, mORMot have everything needed to achieve the same as the code in the link, except for a JWT class for RS256 algorithm? Can I get my hopes up for such a class being made in the mORMot framework, or should I go for the workaround suggested by mpv? Off course doing all in Delphi code is preferred.
Offline
Currently we do not have a X509 parser. Either we should use a OpenSSL (preferred way as for me) or wrote/adopt some ASN parser (huge work). The simplest way to solve your task right now is to use small external program.
Offline
Pages: 1