digital signing

  1. B

    Resolved 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. M

    sign a request using SHA1 and private.key

    Hello, I have private key like: string privateKey = @"-----BEGIN PRIVATE KEY----- MIICd............................... hqhPg== -----END PRIVATE KEY-----"; And request like: string request = "<?xml version=\"1.0\" encoding=\"windows-1251\"?><request>...............</request>";. I need to write...
Back
Top Bottom