You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using CryptoBase.Digests.MD5;
-
- namespace Shadowsocks.Net.Crypto
- {
- public static class CryptoUtils
- {
- public static byte[] MD5(byte[] b)
- {
- var hash = new byte[CryptoBase.MD5Length];
- MD5Utils.Default(b, hash);
- return hash;
- }
- }
- }
|