org.xipki.ca.gateway.GatewayUtil Maven / Gradle / Ivy
// Copyright (c) 2013-2023 xipki. All rights reserved.
// License Apache License 2.0
package org.xipki.ca.gateway;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.cms.IssuerAndSerialNumber;
import org.bouncycastle.asn1.crmf.DhSigStatic;
import org.bouncycastle.asn1.pkcs.CertificationRequest;
import org.slf4j.Logger;
import org.xipki.audit.AuditEvent;
import org.xipki.audit.AuditStatus;
import org.xipki.security.*;
import static org.xipki.util.Args.notNull;
/**
* Gateway Utilities.
* @author Lijun Liao (xipki)
* @since 6.0.0
*/
public class GatewayUtil {
public static void logAuditEvent(Logger log, AuditEvent event) {
if (event == null) {
return;
}
if (event.getStatus() == AuditStatus.FAILED) {
if (log.isWarnEnabled()) {
log.warn(event.toTextMessage());
}
} else {
if (log.isInfoEnabled()) {
log.info(event.toTextMessage());
}
}
}
public static boolean verifyCsr(CertificationRequest csr, SecurityFactory securityFactory, PopControl popControl) {
notNull(csr, "csr");
notNull(popControl, "popControl");
ASN1ObjectIdentifier algOid = csr.getSignatureAlgorithm().getAlgorithm();
DHSigStaticKeyCertPair kaKeyAndCert = null;
if (ObjectIdentifiers.Xipki.id_alg_dhPop_x25519.equals(algOid)
|| ObjectIdentifiers.Xipki.id_alg_dhPop_x448.equals(algOid)) {
DhSigStatic dhSigStatic = DhSigStatic.getInstance(csr.getSignature().getBytes());
IssuerAndSerialNumber isn = dhSigStatic.getIssuerAndSerial();
ASN1ObjectIdentifier keyOid = csr.getCertificationRequestInfo().getSubjectPublicKeyInfo()
.getAlgorithm().getAlgorithm();
kaKeyAndCert = popControl.getDhKeyCertPair(isn.getName(), isn.getSerialNumber().getValue(),
EdECConstants.getName(keyOid));
if (kaKeyAndCert == null) {
return false;
}
}
AlgorithmValidator popValidator = popControl.getPopAlgoValidator();
return securityFactory.verifyPop(csr, popValidator, kaKeyAndCert);
} // method verifyCsr
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy