Imported Upstream version 6.8.0.91

Former-commit-id: 4863c948385110554fe3b36b8716d23d16bc28b8
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2020-01-08 08:36:52 +00:00
parent 9ccf40b45a
commit cc5980f423
80 changed files with 1719 additions and 56 deletions

View File

@ -0,0 +1,13 @@
namespace System.Security.Cryptography.Pkcs {
/// <summary>Represents the type of anti-tampering applied to a PKCS#12 PFX value.</summary>
public enum Pkcs12IntegrityMode {
/// <summary>The PKCS#12 PFX value is not protected from tampering.</summary>
None = 1,
/// <summary>The PKCS#12 PFX value is protected from tampering with a Message Authentication Code (MAC) keyed with a password.</summary>
Password = 2,
/// <summary>The PKCS#12 PFX value is protected from tampering with a digital signature using public key cryptography.</summary>
PublicKey = 3,
/// <summary>The type of anti-tampering applied to the PKCS#12 PFX is unknown or could not be determined.</summary>
Unknown = 0
}
}