Sign documents with QR-code embedded object
Leave feedback
GroupDocs.Signature provides ability to embed into QR-code signature custom objects. This feature is implemented over object serialization to string and further encryption. By default library uses json format serialization and symmetric encryption, the class SymmetricEncryption class. Creation of this encryption expects 3 arguments like encryption algorithm enumeration SymmetricAlgorithmType with one of following values (DES, TripleDES, RC2, Rijndael), string value key and string value salt.
Here are the steps to embed into QR-code text with standard encryption with GroupDocs.Signature:
Implement if needed custom data serialization class that implement IDataSerializer interface. By default GroupDocs.Signature uses embedded json format serialization but allows user to customize it.
Implement if needed custom data encryption class that implements IDataEncryption interface. By default GroupDocs.Signature has several encryption implementation you can use but allows user to customize it.
Implement class with properties and specify if needed class attributes (like custom serialization attribute, custom encryption attribute), specify attributes for properties like FormatAttribute to specify serialization name and display format, same as SkipSerializationAttribute to mark property of class as not serialize
Create new instance of Signature class and pass source document path as a constructor parameter.
Implementation of embedding custom object into QR-code signature
This example shows how to embed custom object into QR-code signature.
using(Signaturesignature=newSignature("sample.pdf")){// setup key and passphrasestringkey="1234567890";stringsalt="1234567890";// create data encryptionIDataEncryptionencryption=newSymmetricEncryption(SymmetricAlgorithmType.Rijndael,key,salt);// create custom objectDocumentSignatureDatadocumentSignatureData=newDocumentSignatureData(){ID=Guid.NewGuid().ToString(),Author=Environment.UserName,Signed=DateTime.Now,DataFactor=11.22M};// setup QR-Code optionsQrCodeSignOptionsoptions=newQrCodeSignOptions(){// set custom object to serialize to QR CodeData=documentSignatureData,// QR-code typeEncodeType=QrCodeTypes.QR,// specify serialization encryptionDataEncryption=encryption,// locate and aligh signatureHeight=100,Width=100,VerticalAlignment=VerticalAlignment.Bottom,HorizontalAlignment=HorizontalAlignment.Right,Margin=newPadding(){Right=10,Bottom=10}};// sign document to filesignature.Sign("QrCodeEncryptedObject.pdf",options);}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples: