Implement custom encryption with QR-Code signatures
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. There is ability to provide custom encryption. This procedure requires implementation of interface IDataEncryption with two methods to encrypt and decrypt data.
Here are the steps to embed into QR-code text with custom encryption with GroupDocs.Signature:
Define 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 attribute 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.
This example shows how to specify custom serialization class. This class could be implemented also as Attribute (optional) to specify as class attribute.
// Define class that implements IDataEncryption interfaceprivateclassCustomXOREncryption:IDataEncryption{/// <summary>/// Gets or sets non empty key for encryption (at least one character)/// </summary>publicintKey{get;set;}/// <summary>/// Encode method to encrypt string./// </summary>/// <param name="source">Source string to encode.</param>/// <returns>Returns enccrypted string</returns>publicstringEncode(stringsource){returnProcess(source);}/// <summary>/// Decode method to obtain decrypted string./// </summary>/// <param name="source">Source string to decode.</param>/// <returns>Returns decrypted string</returns>publicstringDecode(stringsource){returnProcess(source);}/// <summary>/// Using XOR operation get encoded / decoded string/// </summary>/// <param name="source"></param>/// <returns></returns>privatestringProcess(stringsource){StringBuildersrc=newStringBuilder(source);StringBuilderdst=newStringBuilder(src.Length);charchTmp;for(intindex=0;index<src.Length;++index){chTmp=src[index];chTmp=(char)(chTmp^this.Key);dst.Append(chTmp);}returndst.ToString();}}
Definition of class
This example shows how to define custom class with serialization and encryption properties and setup Format attributes for properties.
Sign documents with custom encrypted objects and values into QR-code signatures
This example shows how to add custom object into metadata signature to Image document.
using(Signaturesignature=newSignature("sample.pdf")){// create data encryptionIDataEncryptionencryption=newCustomXOREncryption();// 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("QRCodeCustomEncryption.pdf",options);}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples: