Recurity.Swf.TagHandler.Protect.Parse C# (CSharp) Method

Parse() protected method

protected Parse ( ) : void
return void
        protected override void Parse()
        {
            String s = String.Format("0x{0:X08}: reading Protect-Tag", this.Tag.OffsetData);
            Log.Debug(this, s);

            BinaryReader br = new BinaryReader(this._dataStream);

            _hasPassword = Tag.Length != 0;

            if (_hasPassword)
            {
                _md5password = SwfStrings.SwfString(this._SwfVersion, br);
            }

            if (_hasPassword)
            {
                String s1 = String.Format("0x{0:X08}:\tPassword", this.Tag.OffsetData, _md5password);
                Log.Debug(this, s1);
            }
        }