X509CRL: getSigAlgName() : X509CRL « java.security.cert « Java by API






X509CRL: getSigAlgName()

  

import java.io.FileInputStream;
import java.security.cert.CertificateFactory;
import java.security.cert.X509CRL;

public class MainClass {
  public static void main(String[] args) throws Exception {
    CertificateFactory cf = CertificateFactory.getInstance("X.509");
    FileInputStream in = new FileInputStream(args[0]);
    X509CRL crl = (X509CRL) cf.generateCRL(in);
    System.out.println("type = " + crl.getType());
    System.out.println("version = " + crl.getVersion());
    System.out.println("issuer = " + crl.getIssuerDN().getName());
    System.out.println("signing algorithm = " + crl.getSigAlgName());
    System.out.println("this update = " + crl.getThisUpdate());
    System.out.println("next update = " + crl.getNextUpdate());
    in.close();
  }
}

   
    
  








Related examples in the same category

1.X509CRL: getIssuerDN()
2.X509CRL: getNextUpdate()
3.X509CRL: getThisUpdate()
4.X509CRL: getType()
5.X509CRL: getVersion()