for(Map.Entry<String, DEREncodable> customExtension: criticalCustomExtensions.entrySet()) {
v3CertGen.addExtension(customExtension.getKey(), true, customExtension.getValue());
}
for(Map.Entry<String, DEREncodable> customExtension: noncriticalCustomExtensions.entrySet()) {
v3CertGen.addExtension(customExtension.getKey(), false, customExtension.getValue());
}
v3CertGen.addExtension(
X509Extensions.SubjectKeyIdentifier,
false,