/// <summary> /// Performs the computation of the signature based on the private key. /// </summary> /// <param name="value">The string that should be signed.</param> /// <returns>The signature for the string.</returns> protected internal override string ComputeHmac512(string value) { return(StorageKey.ComputeMacSha512(Credentials.Key, value)); }