I am implementing chat server on node js as integrating to my aps.net application.
My users are authenticated to aps.net application and authentication cookie is generated with machine key. Somehow I need to get this authentication cookie send to nodejs chat server and check if cookie is valid.
So far I tried this question but no progress. There is this answer for PHP developers.
Inside .net application it is as easy as this.
However, now I am trying to do in nodejs application with edgejs, running .net codes inside nodejs
How can I manually decrypt authentication cookie with .net (outside of that web application)?