< Summary

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

Methods/Properties

.ctor()