namespace com.hitrust.b2b.Security.Certificates
|
|
{
|
|
using System;
|
|
|
|
public enum StoreLocation
|
|
{
|
|
CurrentService = 0x40000,
|
|
CurrentUser = 0x60000,
|
|
CurrentUserGroupPolicy = 0x70000,
|
|
LocalMachine = 0x20000,
|
|
LocalMachineEnterprise = 0x90000,
|
|
LocalMachineGroupPolicy = 0x80000,
|
|
Services = 0x50000,
|
|
Unknown = 0,
|
|
Users = 0x10000
|
|
}
|
|
}
|
|
|