FileFind.Meshwork.Node.CreateDecryptor C# (CSharp) 메소드

CreateDecryptor() 공개 메소드

public CreateDecryptor ( ) : ICryptoTransform
리턴 ICryptoTransform
        public ICryptoTransform CreateDecryptor()
        {
            if (keyBytes == null | ivBytes == null)
                throw new Exception("No key for " + this.ToString());
            return alg.CreateDecryptor(keyBytes, ivBytes);
        }