-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
146 changed files
with
4,497 additions
and
2,499 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
namespace CipherPunk.UI; | ||
|
||
internal enum MandatoryLevel | ||
{ | ||
/// <summary> | ||
/// Anonymous logged on processes. Write access is mostly blocked. | ||
/// </summary> | ||
Untrusted, | ||
|
||
/// <summary> | ||
/// Used for AppContainers, browsers that access the internet and prevent most write access to objects on the system—specifically the registry and filesystem. | ||
/// </summary> | ||
Low, | ||
|
||
/// <summary> | ||
/// Default for most processes. For authenticated users. | ||
/// </summary> | ||
Medium, | ||
|
||
/// <summary> | ||
/// Default for most processes. For authenticated users. With UIAccess rights. | ||
/// </summary> | ||
MediumUiAccess, | ||
|
||
MediumPlus, | ||
|
||
/// <summary> | ||
/// Administrator-level processes. (Elevated) process with UAC. | ||
/// </summary> | ||
High, | ||
|
||
/// <summary> | ||
/// Reserved for system services/processes. | ||
/// </summary> | ||
System, | ||
|
||
/// <summary> | ||
/// Not seen to be used by default. Windows Internals book says it can be set by a kernel-mode caller. | ||
/// </summary> | ||
ProtectedProcess, | ||
|
||
SecureProcess | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
CipherPunk.UI/Entities/UiWindowsDocumentationCipherSuiteConfiguration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.