| | 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 | |
|
| | 5 | | namespace 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 | |
|
| 4 | 14 | | public Aes192CbcHmacSha384() : base( AlgorithmName ) |
| | 15 | | { |
| 4 | 16 | | } |
| | 17 | | } |
| | 18 | | } |