Skip to content

Commit b0214d5

Browse files
Merge pull request #452 from telerik/new-kb-verify-digital-signatures-radpdfprocessing-d6ad5a4241384dbeb612daf35a0edfcd
addressed feedback
2 parents 2f20604 + 0298aa8 commit b0214d5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

knowledge-base/verify-digital-signatures-radpdfprocessing.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ Here is a code snippet demonstrating these steps and including the creation of a
3434
```csharp
3535
static void Main(string[] args)
3636
{
37-
3837
PdfFormatProvider provider = new PdfFormatProvider();
3938
RadFixedDocument document = provider.Import(File.ReadAllBytes("unsigned.pdf"));
4039

@@ -73,7 +72,7 @@ Here is a code snippet demonstrating these steps and including the creation of a
7372
provider.Export(document, output);
7473
}
7574

76-
isSigned = CheckSignedDocument(document);
75+
isSigned = CheckSignedDocument(document);
7776
Debug.WriteLine(isSigned.ToString());
7877
Process.Start(new ProcessStartInfo() { FileName = signedDocumentFilePath, UseShellExecute = true });
7978
}
@@ -101,10 +100,10 @@ Here is a code snippet demonstrating these steps and including the creation of a
101100
Debug.WriteLine("Signed on: "+properties.TimeOfSigning.ToString());
102101
isSigned = true;
103102
break;
104-
105103
}
106104
}
107105
}
106+
108107
return isSigned;
109108
}
110109
```

0 commit comments

Comments
 (0)