< Summary

Information
Class: Renci.SshNet.Security.Org.BouncyCastle.Math.EC.Multiplier.WTauNafPreCompInfo
Assembly: Renci.SshNet
File(s): \home\appveyor\projects\ssh-net\src\Renci.SshNet\Security\BouncyCastle\math\ec\multiplier\WTauNafPreCompInfo.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 24
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
get_PreComp()100%10%
set_PreComp(...)100%10%

File(s)

\home\appveyor\projects\ssh-net\src\Renci.SshNet\Security\BouncyCastle\math\ec\multiplier\WTauNafPreCompInfo.cs

#LineLine coverage
 1namespace Renci.SshNet.Security.Org.BouncyCastle.Math.EC.Multiplier
 2{
 3    /**
 4     * Class holding precomputation data for the WTNAF (Window
 5     * <code>&#964;</code>-adic Non-Adjacent Form) algorithm.
 6     */
 7    internal class WTauNafPreCompInfo
 8        : PreCompInfo
 9    {
 10        /**
 11         * Array holding the precomputed <code>AbstractF2mPoint</code>s used for the
 12         * WTNAF multiplication in <code>
 13         * {@link org.bouncycastle.math.ec.multiplier.WTauNafMultiplier.multiply()
 14         * WTauNafMultiplier.multiply()}</code>.
 15         */
 16        protected AbstractF2mPoint[] m_preComp;
 17
 18        public virtual AbstractF2mPoint[] PreComp
 19        {
 020            get { return m_preComp; }
 021            set { this.m_preComp = value; }
 22        }
 23    }
 24}