certificate

  1. B

    Trying to code a PHP equivalent of this C# code. Hashing and Signing of a text value

    I have this code block in C# that I am trying to convert to PHP and Java. But already got stuck on PHP // code sample given to me as to how the Token is created var text = "Text to Hash and then Sign"; var store = new X509Store(StoreName.My); store.Open(OpenFlags.ReadOnly); var certificate =...
  2. U

    Question How to check a catalog file is signed and certificate detail

    I can check this though signtool.exe and it results in the text output though below command. signtool.exe verify /v /pa "C:\test\ftdiport.cat" And this result the output in verbose mode in command prompt or we can redirect it to a text file as below. Verifying: C:\test\ftdiport.cat Signing...
  3. U

    Question Signing of Unsigned Drivers

    I am creating an application which will check whether the drivers in a particular folder is unsigned or not and sign them. The normal procedure is use inf2cat.exe to create a catalog file. I automated this part using libraries provided for it. The next part to create a certificate using...
Back
Top Bottom