BraintreeEncryption.Library.BouncyCastle.Crypto.Engines.RsaEngine.Init C# (CSharp) Method

Init() public method

public Init ( bool forEncryption, ICipherParameters parameters ) : void
forEncryption bool
parameters ICipherParameters
return void
        public void Init(
            bool				forEncryption,
            ICipherParameters	parameters)
        {
            if (core == null)
                core = new RsaCoreEngine();

            core.Init(forEncryption, parameters);
        }