Move ArtifcatsCreationProvider one level higher
[oom/platform/cert-service.git] / certServiceClient / src / main / java / org / onap / aaf / certservice / client / certification / PrivateKeyToPemEncoder.java
1 /*
2  * ============LICENSE_START=======================================================
3  * aaf-certservice-client
4  * ================================================================================
5  * Copyright (C) 2020 Nokia. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aaf.certservice.client.certification;
22
23
24 import org.bouncycastle.openssl.jcajce.JcaPEMWriter;
25 import org.bouncycastle.util.io.pem.PemObject;
26 import org.onap.aaf.certservice.client.certification.exception.PkEncodingException;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 import java.io.IOException;
31 import java.io.StringWriter;
32 import java.security.PrivateKey;
33
34 public class PrivateKeyToPemEncoder {
35
36     private static final Logger LOGGER = LoggerFactory.getLogger(PrivateKeyToPemEncoder.class);
37     private static final String PEM_OBJECT_TYPE = "RSA PRIVATE KEY";
38
39     public String encodePrivateKeyToPem(PrivateKey pk) throws PkEncodingException {
40         LOGGER.info("Attempt to encode private key to PEM");
41         StringWriter stringWriter = new StringWriter();
42         try (JcaPEMWriter pemWriter = new JcaPEMWriter(stringWriter)) {
43             pemWriter.writeObject(new PemObject(PEM_OBJECT_TYPE, pk.getEncoded()));
44         } catch (IOException e) {
45             LOGGER.error("Encode of private key to PEM failed. Exception message: {}", e.getMessage());
46             throw new PkEncodingException(e);
47         }
48         return stringWriter.toString();
49     }
50 }