■ 윈도우즈 인증서 저장소명을 나열하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System; using System.Security.Cryptography.X509Certificates; foreach(StoreName storeName in Enum.GetValues(typeof(StoreName))) { X509Store store = new X509Store(storeName); store.Open(OpenFlags.ReadOnly); Console.WriteLine(store.Name); } |