namespace System.Security.Cryptography.Pkcs { /// Represents the kind of encryption associated with a PKCS#12 SafeContents value. public enum Pkcs12ConfidentialityMode { /// The SafeContents value is not encrypted. None = 1, /// The SafeContents value is encrypted with a password. Password = 2, /// The SafeContents value is encrypted using public key cryptography. PublicKey = 3, /// The kind of encryption applied to the SafeContents is unknown or could not be determined. Unknown = 0 } }