Computes the signature for the specified hash value.
            
    Namespace: 
   Rebex.Security.Cryptography
    Assembly:
   Rebex.Common (in Rebex.Common.dll)
 Syntax
Syntax
| Visual Basic | 
|---|
| Public Function SignHash ( _ hash As Byte(), _ hashAlgorithm As SignatureHashAlgorithm _ ) As Byte() | 
| C# | 
|---|
| public byte[] SignHash( byte[] hash, SignatureHashAlgorithm hashAlgorithm ) | 
Parameters
- hash
- Type: array<System..::..Byte>[]()[][]
 The hash value of the data to be signed.
- hashAlgorithm
- Type: Rebex.Security.Certificates..::..SignatureHashAlgorithm
 A hash algorithm used to create the hash value.
Return Value
The signature for the specified hash value. Remarks
Remarks
The private key must be available for this method to succeed.
 
     
     
     
     
    