Privacy protocol enumeration.
Namespace: SnmpSharpNetAssembly: SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.9.1.0 (0.9.1)
Syntax
| C# |
|---|
public enum PrivacyProtocols |
| Visual Basic |
|---|
Public Enumeration PrivacyProtocols |
| Visual C++ |
|---|
public enum class PrivacyProtocols |
Members
| Member name | Value | Description | |
|---|---|---|---|
| None | 0 | No privacy protocol. Data will not be encrypted | |
| DES | 1 | Privacy protocol is DES (56 bit encryption) | |
| AES128 | 2 | Privacy protocol is AES-128 (128 bit key). For implementation details, see PrivacyAES128 and PrivacyAES classes. | |
| AES192 | 3 | Privacy protocol is AES-192 (128 bit key). For implementation details, see PrivacyAES192 and PrivacyAES classes. | |
| AES256 | 4 | Privacy protocol is AES-156 (256 bit key). For implementation details, see PrivacyAES256 and PrivacyAES classes. | |
| TripleDES | 5 | Privacy protocol is Triple-DES. For implementation details see Privacy3DES. |