How to implement digital signature with my existing web project

后端 未结 3 1565
渐次进展
渐次进展 2020-12-03 13:11

I\'m working on the project where the user needs to do a digital signature on a document. I checked in the google and know about sinadura which is a desktop application but

3条回答
  •  离开以前
    2020-12-03 13:27

    It is hard to tell what is going to meet your requirements from the high-level you've provided. "Digital signature" is a very broad and generic requirement. Legal digital signatures can be as simple as a text field with specific instructions to users on how to type their conformed signature. And, of course, you can go all the way to signing documents with encrypted certificates.

    It sounds like you tried Alfresco and one of the many digital signature add-ons available for it, but you do not want to implement an entire enterprise content management platform just to meet this requirement.

    One idea would be to look at a SaaS offering like Docusign or RightSignature.

    Another idea would be to develop your own simple service. If the documents you need to sign are PDF, for example, or could be easily converted to PDF, you could use something like the iText PDF API to create digital signatures on PDF documents on the server side.

提交回复
热议问题