< Summary

Information
Class: Renci.SshNet.Security.Cryptography.AsymmetricCipher
Assembly: Renci.SshNet
File(s): \home\appveyor\projects\ssh-net\src\Renci.SshNet\Security\Cryptography\AsymmetricCipher.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 19
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_MinimumSize()100%10%

File(s)

\home\appveyor\projects\ssh-net\src\Renci.SshNet\Security\Cryptography\AsymmetricCipher.cs

#LineLine coverage
 1namespace Renci.SshNet.Security.Cryptography
 2{
 3    /// <summary>
 4    /// Base class for asymmetric cipher implementations.
 5    /// </summary>
 6    public abstract class AsymmetricCipher : Cipher
 7    {
 8        /// <summary>
 9        /// Gets the minimum data size.
 10        /// </summary>
 11        /// <value>
 12        /// The minimum data size.
 13        /// </value>
 14        public override byte MinimumSize
 15        {
 016            get { return 0; }
 17        }
 18    }
 19}

Methods/Properties

get_MinimumSize()