1
PKCS # 12 (PFX 파일)에서 적절한 X509Store를 열 수있는 컬렉션 내의 인증서 유형을 어떻게 식별 할 수 있습니까?C#으로 인증서 및 체인 가져 오기 (PFX 파일)
X509Certificate2Collection collection = new X509Certificate2Collection();
collection.Import("mycert.pfx", "mypass", X509KeyStorageFlags.PersistKeySet);
foreach(X509Certificate2 cert in collection)
{
// client cert? intermediate CA? root CA?
}
보통 내 시나리오에서 클라이언트 인증서에는 개인 키가 있고 루트 CA에는 cert.Subject == cert.Issuer가 있습니다. 그게 유일한 방법인가요?