/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.jooby.internal.ssl; import java.io.File; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.charset.StandardCharsets; import java.security.KeyException; import java.security.KeyStore; import java.security.cert.CertificateException; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import com.google.common.io.BaseEncoding; import com.google.common.io.Files; /** * Reads a PEM file and converts it into a list of DERs so that they are imported into a * {@link KeyStore} easily. * * Kindly Borrowed from <a href="http://netty.io">Netty</a> */ final class PemReader { private static final Pattern CERT_PATTERN = Pattern.compile( "-+BEGIN\\s+.*CERTIFICATE[^-]*-+(?:\\s|\\r|\\n)+" + // Header "([a-z0-9+/=\\r\\n]+)" + // Base64 text "-+END\\s+.*CERTIFICATE[^-]*-+", // Footer Pattern.CASE_INSENSITIVE); private static final Pattern KEY_PATTERN = Pattern.compile( "-+BEGIN\\s+.*PRIVATE\\s+KEY[^-]*-+(?:\\s|\\r|\\n)+" + // Header "([a-z0-9+/=\\r\\n]+)" + // Base64 text "-+END\\s+.*PRIVATE\\s+KEY[^-]*-+", // Footer Pattern.CASE_INSENSITIVE); static List<ByteBuffer> readCertificates(final File file) throws CertificateException, IOException { String content = Files.toString(file, StandardCharsets.US_ASCII); BaseEncoding base64 = base64(); List<ByteBuffer> certs = new ArrayList<ByteBuffer>(); Matcher m = CERT_PATTERN.matcher(content); int start = 0; while (m.find(start)) { ByteBuffer buffer = ByteBuffer.wrap(base64.decode(m.group(1))); certs.add(buffer); start = m.end(); } if (certs.isEmpty()) { throw new CertificateException("found no certificates: " + file); } return certs; } private static BaseEncoding base64() { return BaseEncoding.base64().withSeparator("\n", '\n'); } static ByteBuffer readPrivateKey(final File file) throws KeyException, IOException { String content = Files.toString(file, StandardCharsets.US_ASCII); Matcher m = KEY_PATTERN.matcher(content); if (!m.find()) { throw new KeyException("found no private key: " + file); } String value = m.group(1); return ByteBuffer.wrap(base64().decode(value)); } private PemReader() { } }