You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
432 B

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
}
}