A libary the decodes the Impression barcode on the Impression chain of custody.
$ dotnet add package ImpressionSignaturesBarcodeA simple library to decode and parse the barcode on the chain of custody on the document signed with Impression. For more information visit www.impression-signatures.com
Sample snippet:
coc.LoadFile("signed_by_impression.pdf");
var barcodes = coc64.FindBarcodes();
Console.WriteLine($"{barcodes.Count} barcode(s) found");
foreach (var item in barcodes)
{
Console.WriteLine($"Signature Request: {item.SignatureRequest.SignatureRequestId}, {item.SignatureRequest.SigneeName}");
}