Package org.ejbca.cvc

Examples of org.ejbca.cvc.OIDField


    } else if (StringUtils.equals(cert.getType(), "CVC")) {
      CardVerifiableCertificate cvccert = (CardVerifiableCertificate)cert;
      CVCPublicKey cvcpk;
      try {
        cvcpk = cvccert.getCVCertificate().getCertificateBody().getPublicKey();
        OIDField oid = cvcpk.getObjectIdentifier();
        certSignatureAlgorithm = AlgorithmUtil.getAlgorithmName(oid);
      } catch (NoSuchFieldException e) {
        log.error("NoSuchFieldException: ", e);
      }
    }
View Full Code Here

TOP

Related Classes of org.ejbca.cvc.OIDField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.