Generate the signature value based on the given signature base and hash algorithm
| C# | Visual Basic | Visual C++ |
public string GenerateSignatureUsingHash( string signatureBase, HashAlgorithm hash )
Public Function GenerateSignatureUsingHash ( _ signatureBase As String, _ hash As HashAlgorithm _ ) As String
public: String^ GenerateSignatureUsingHash( String^ signatureBase, HashAlgorithm^ hash )
- signatureBase (String)
- The signature based as produced by the GenerateSignatureBase method or by any other means
- hash (HashAlgorithm)
- The hash algorithm used to perform the hashing. If the hashing algorithm requires initialization or a key it should be set prior to calling this method
A base64 string of the hash value