From 4ed62ed003d9e18bc4ff04024f8e294a47395256 Mon Sep 17 00:00:00 2001
From: Yuriy Movchan <Yuriy.Movchan@gmail.com>
Date: Mon, 01 Aug 2022 12:20:50 +0000
Subject: [PATCH] Add BCFKS FIPS key store type support (#247)
---
opendj-server-legacy/src/main/java/org/opends/quicksetup/util/Utils.java | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/Utils.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/Utils.java
index fbb5067..a6f8390 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/Utils.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/Utils.java
@@ -1285,6 +1285,8 @@
return INFO_PKCS11_CERTIFICATE.get();
case PKCS12:
return INFO_PKCS12_CERTIFICATE.get();
+ case BCFKS:
+ return INFO_BCFKS_CERTIFICATE.get();
default:
throw new IllegalStateException("Unknown certificate options type: " + ops.getCertificateType());
}
--
Gitblit v1.10.0