ICryptographyProvider.cs 152 B

123456789
  1. using System;
  2. namespace MediaBrowser.Model.Cryptography
  3. {
  4. public interface ICryptographyProvider
  5. {
  6. Guid GetMD5(string str);
  7. }
  8. }