| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | namespace Azure.Storage.Cryptography.Models |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// Represents the encryption agent stored on the service. |
| | 8 | | /// </summary> |
| | 9 | | internal class EncryptionAgent |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// The protocol version used for encryption. |
| | 13 | | /// </summary> |
| 0 | 14 | | public ClientSideEncryptionVersion EncryptionVersion { get; set; } |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// The algorithm used for encryption. |
| | 18 | | /// </summary> |
| 0 | 19 | | public ClientSideEncryptionAlgorithm EncryptionAlgorithm { get; set; } |
| | 20 | | } |
| | 21 | | } |