コード例 #1
0
ファイル: SoftEther.cs プロジェクト: xydoublez/SoftEtherApi
        public static byte[] CreateNtlmHash(string password)
        {
            var hashCreator = new MD4();
            var ntmlHash    = hashCreator.Update(Encoding.Unicode.GetBytes(password)).Digest();

            return(ntmlHash);
        }