Reading file digital signature details

Hi all,
Do you know any way to read the detals of a digital signature of a certain file.
I receive files with digital signatures, I want to read the details of the signatures and insert them into a database.

Please help...
Regards...



Answer this question

Reading file digital signature details

  • C#

    What kind of encryption is used to generate the Digital Signature the .NET Framework provides classes to work with couple of common encryption algorithms.

    You can find them in the System.Security.Cryptography namespace.


    Regards,
    Saurabh Nandu
    www.MasterCSharp.com
    www.AksTech.com

  • stripendulous

    Different files formats use different ways for Digital Sigunatures and different encryption algorithms. Unless you know which algorithm is used you will not be able to decrypt the file.

    All file formats support signing differently. Word has a different way, PDF has a different way. If you are going to deal with Word and PDF then you should look at both the Word API's and the Adobe Acrobat (or similar API's) that help you work with PDF files.

    To work with Word documents you should install Visual Studio Tools for Office which provides a easy way to work with word documents. you will find better responsed on specific questions related to the Word API in the MS Word News groups or VSTO Forums on this site.


    Regards,
    Saurabh Nandu
    www.MasterCSharp.com
    www.AksTech.com

  • Jim Kiser

    Hi,
    I have no information on the file encryption, I only recieve the files with the digital signature, and want to retrive it's details.
    The file maybe a PDF or any office file.
    I see on the Word object in the visual studio, a signature class. How can I use it without to open the file.

    Do you have any information.
    All my target to make an automatic proccess to register the files digital signature.

    Please help.
    Best regrads...

  • Reading file digital signature details