Reputation: 655
Is there any way to sign digitally an office document (Word, Excel, ...)? I've found how to sign PDF and XMLs documents, but I don't find anything about sign Word documents.
Thanks ;)
Upvotes: 3
Views: 1585
Reputation: 5578
As far as I know Office uses XML Digital signature.
I've managed to implement reading/verifying of digital signatures of OpenOffice documents (which also use XML digital signature) by reading up on this:
http://www.xml.com/pub/a/2001/08/08/xmldsig.html
http://java.sun.com/developer/technicalArticles/xml/dig_signatures
http://java.sun.com/developer/technicalArticles/xml/dig_signature_api
http://docs.oracle.com/javase/6/docs/technotes/guides/security/xmldsig/XMLDigitalSignature.html
Upvotes: 2