< Summary

Class:Microsoft.Azure.KeyVault.Cryptography.Algorithms.Aes192CbcHmacSha384
Assembly:Microsoft.Azure.KeyVault.Cryptography
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault.Cryptography\src\Algorithms\Aes192CbcHmacSha384.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\Aes192CbcHmacSha384.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    /// JWE A192CBC-HS384: https://tools.ietf.org/html/rfc7518#section-5.2.4
 9    /// </summary>
 10    public class Aes192CbcHmacSha384 : AesCbcHmacSha2
 11    {
 12        public const string AlgorithmName = "A192CBC-HS384";
 13
 414        public Aes192CbcHmacSha384() : base( AlgorithmName )
 15        {
 416        }
 17    }
 18}

Methods/Properties

.ctor()