1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.IO;
- using System.Security.Cryptography;
- using System.Text;
- using MediaBrowser.Model.Cryptography;
- namespace Emby.Common.Implementations.Cryptography
- {
- public class CryptographyProvider : ICryptographyProvider
- {
- public Guid GetMD5(string str)
- {
- return new Guid(GetMD5Bytes(str));
- }
- public byte[] GetMD5Bytes(string str)
- {
- using (var provider = MD5.Create())
- {
- return provider.ComputeHash(Encoding.Unicode.GetBytes(str));
- }
- }
- public byte[] GetSHA1Bytes(byte[] bytes)
- {
- using (var provider = SHA1.Create())
- {
- return provider.ComputeHash(bytes);
- }
- }
- public byte[] GetMD5Bytes(Stream str)
- {
- using (var provider = MD5.Create())
- {
- return provider.ComputeHash(str);
- }
- }
- public byte[] GetMD5Bytes(byte[] bytes)
- {
- using (var provider = MD5.Create())
- {
- return provider.ComputeHash(bytes);
- }
- }
- }
- }
|