문제

I am quite new to java programming. I want to create a basic crl but I have realised that X509v3 has no crlgenerator. I would like to know how the crl is generated for X509v3. so far this what I have got. http://www.bouncycastle.org/wiki/display/JA1/X.509+Certificate+Revocation+Lists

도움이 되었습니까?

해결책

According to RFC5280 x509v3 certificates are to be combined with x509v2 CRL-s

In plain english: As of today (March 2014) x509v2 is the latest version of CRL and it's OK to use it with x509v3 certificates. You should use the X509V2CRLGenerator in your application.

See also:

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top