Merge "Fix issue with certificates conversion"
authorHerbert Eiselt <herbert.eiselt@highstreet-technologies.com>
Fri, 12 Feb 2021 09:04:28 +0000 (09:04 +0000)
committerGerrit Code Review <gerrit@onap.org>
Fri, 12 Feb 2021 09:04:28 +0000 (09:04 +0000)
Former-commit-id: 946d17b0acab6b36600b6517a2ca0dd263851ff9

installation/sdnc/src/main/scripts/installCerts.py

index 6ca3bbc..220cafd 100644 (file)
@@ -2,6 +2,7 @@
 #  Copyright (C) 2019 Nordix Foundation.
 # ================================================================================
 #  extended by highstreet technologies GmbH (c) 2020
+#  Copyright (c) 2021 Nokia Intellectual Property.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -283,6 +284,7 @@ def jks_to_p12(file, password):
 def make_cert_chain(cert_chain, pattern):
     cert_list = []
     if cert_chain:
+        cert_chain = cert_chain.decode('utf-8')
         matches = re.findall(pattern, cert_chain, re.DOTALL | re.MULTILINE)
         for cert in matches:
             cert_list.append(cert.strip())