< Summary

Class:Microsoft.Azure.KeyVault.Cryptography.Algorithms.RsaSignature
Assembly:Microsoft.Azure.KeyVault.Cryptography
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault.Cryptography\src\Algorithms\RsaSignature.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:18
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\RsaSignature.cs

#LineLine coverage
 1//
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6
 7namespace Microsoft.Azure.KeyVault.Cryptography.Algorithms
 8{
 9    /// <summary>
 10    /// Abstract RsaSignature.
 11    /// </summary>
 12    public abstract class RsaSignature : AsymmetricSignatureAlgorithm
 13    {
 214        protected RsaSignature( string name ) : base( name )
 15        {
 216        }
 17    }
 18}

Methods/Properties

.ctor(...)