You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="MachineKeyCompatibilityMode.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.Configuration {
|
||||
using System;
|
||||
|
||||
public enum MachineKeyCompatibilityMode {
|
||||
|
||||
// 2.0 SP1 mode encryption doesn't use IVs when encrypting data and is included only for legacy reasons.
|
||||
Framework20SP1 = 0,
|
||||
|
||||
// 2.0 SP2 mode encryption uses IVs when encrypting data.
|
||||
// See: DevDiv Bugs #137864 (http://bugcheck/bugs/DevDivBugs/137864)
|
||||
Framework20SP2 = 1,
|
||||
|
||||
// 4.5 mode encryption uses IVs, signing, and a purpose (subkey derivation) to encrypt data.
|
||||
// See: DevDiv #48244 (http://vstfdevdiv:8080/DevDiv2/web/wi.aspx?id=48244), which the overall Crypto DCR is a reaction to
|
||||
// See: DevDiv #87406 (http://vstfdevdiv:8080/DevDiv2/web/wi.aspx?id=87406)
|
||||
Framework45 = 2,
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user