# ComputeSignature Method Computes an HMAC-SHA256 over the salt using the master key and truncates it to the same number of bytes as the salt. ## Definition **Namespace:** CapyKit.Helpers **Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.4 **C#** ``` C# private byte[] ComputeSignature( byte[] salt ) ``` **F#** ``` F# private member ComputeSignature : salt : byte[] -> byte[] ``` #### Parameters
  Byte[]
The salt.
#### Return Value Byte[] The calculated signature. ## See Also #### Reference KeyHelper Class CapyKit.Helpers Namespace