ICryptographyProvider.cs 248 B

123456789101112
  1. using System;
  2. using System.IO;
  3. namespace MediaBrowser.Model.Cryptography
  4. {
  5. public interface ICryptographyProvider
  6. {
  7. Guid GetMD5(string str);
  8. byte[] GetMD5Bytes(string str);
  9. byte[] GetMD5Bytes(Stream str);
  10. }
  11. }