< Summary

Class:Microsoft.Azure.KeyVault.Cryptography.Algorithms.RsaEncryption
Assembly:Microsoft.Azure.KeyVault.Cryptography
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault.Cryptography\src\Algorithms\RsaEncryption.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:16
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault.Cryptography\src\Algorithms\RsaEncryption.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for
 3// license information.
 4
 5namespace Microsoft.Azure.KeyVault.Cryptography.Algorithms
 6{
 7    /// <summary>
 8    /// Abstract RSA encryption algorithm.
 9    /// </summary>
 10    public abstract class RsaEncryption : AsymmetricEncryptionAlgorithm
 11    {
 412        protected RsaEncryption( string name ) : base( name )
 13        {
 414        }
 15    }
 16}

Methods/Properties

.ctor(...)