コード例 #1
0
ファイル: SteamCrypto.cs プロジェクト: msfwaifu/SteamServer
        // InitializationVector for 3DES.
        public static Byte[] CalculateIV(UInt32 Seed)
        {
            HashAlgorithm hash = new Tiger();

            return(hash.ComputeHash(BitConverter.GetBytes(Seed)));
        }