public string Compute(string plainData, SdsMessageDigestAlgorithm algorithm, byte[] saltaBytes)
 {
     throw new NotImplementedException();
 }
 // -------------------------------------------------------------------------------------------------------------------------------- //
 // METHOD COMPUTE                                                                                                                   //
 // -------------------------------------------------------------------------------------------------------------------------------- //
 /// <summary>
 ///     Computes the hash value using given algorithm and provided data as a byte array.
 /// </summary>
 /// <param name="plainData"> Data to be hashed</param>
 /// <param name="algorithm"> Digest algorithm to be used</param>
 /// <param name="saltaBytes"> Salt bytes to be used in the operation </param>
 /// <returns>byte[] with the computed value of the digest</returns>
 public byte[] Compute(byte[] plainData, SdsMessageDigestAlgorithm algorithm, byte[] saltaBytes)
 {
     throw new NotImplementedException();
 } // METHOD CMOPUTE ENDS ---------------------------------------------------------------------------------------------------------- //
 public byte[] Compute(byte[] plainData, SdsMessageDigestAlgorithm algorithm)
 {
     throw new NotImplementedException();
 }