What I am trying to do:
Trying to create an internal system where users upload PDF files and send them to other users.
These PDF files should be signed using Digital Signature.
What I have done and searched for:
I have found this npm package https://www.npmjs.com/package/node-signpdf which I think do exactly what I want.
Problem is:
This package requires p12 certificate and I don't know if it possible to create this certificate for each user on the system to identify them.
And if it is possible then how I do it?
And if it is not, what is the best solution for that?