Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Pkcs12ConfidentialityMode.NotSupported.cs « System.Security.Cryptography.Pkcs « System.Security « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cf164d4444251fa04278cd0d6531a02c6ec4850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace System.Security.Cryptography.Pkcs {
    /// <summary>Represents the kind of encryption associated with a PKCS#12 SafeContents value.</summary>
    public enum Pkcs12ConfidentialityMode {
        /// <summary>The SafeContents value is not encrypted.</summary>
        None = 1,
        /// <summary>The SafeContents value is encrypted with a password.</summary>
        Password = 2,
        /// <summary>The SafeContents value is encrypted using public key cryptography.</summary>
        PublicKey = 3,
        /// <summary>The kind of encryption applied to the SafeContents is unknown or could not be determined.</summary>
        Unknown = 0
    }
}