I have an angular front End and NodeJS back end App. I can generate some PDFs.
Before to be able to save the PDF, i would love to have a pop up window asking the user to sign it with its own electronic signature, which each of my users have on their own smart card or USB device.
I have no idea how to connect my app with the users' smart card in order to get some callback when the document is signed in the browser
I found PKCS#11 or Node JS chilkat as some libraries in this direction, but nothing really helps so far
Any ideas how to connect my front end or back end to users smart card or token with digital signature and get a callback of the user has signed the document so i can save it with the signature on the server?
Regards