Git Product home page Git Product logo

pem-converter-maven-plugin's Introduction

PEM Converter Maven Plugin

A Maven plugin that converts OpenSSL PEM-formatted root certificate files to a format more easily and efficiently readable in a Java program.

1. In your Maven build:

Add this to the <build><plugins>...</plugins></build> section of your "pom.xml":

<plugin>
    <groupId>com.dropbox.maven</groupId>
    <artifactId>pem-converter-maven-plugin</artifactId>
    <version>1.0</version>
    <executions>
        <execution>
            <configuration>
                <input>whatever.pem</input>
                <output>${project.build.directory}/generated-resources/certs/whatever.raw</output>
            </configuration>
            <goals>
                <goal>convert</goal>
            </goals>
        </execution>
    </executions>
</plugin>

Add this to the <build><resources>...</resources></build> section of your "pom.xml":

<resource>
    <directory>${project.build.directory}/generated-resources/certs</directory>
</resource>

2. In your program:

Use getResourceAsStream to read the generated resource file:

InputStream in = MyClass.class.getResourceAsStream("whatever.raw");
if (in == null) {
    throw new AssertionError("Couldn't find resource \"whatever.raw\");
}

Then load the certificates from an InputStream into a KeyStore. Example code you can copy: RawLoader.java

Command-Line Script

There's also a command-line script that will run the conversion.

  1. mvn compile
  2. ./run

pem-converter-maven-plugin's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

pem-converter-maven-plugin's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.