All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.up.uca.micro.ssl.client.PemTrust Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.uca.micro.ssl.client;

import io.vertx.core.Handler;
import io.vertx.core.json.JsonObject;
import io.vertx.core.net.ClientOptionsBase;
import io.vertx.core.net.OpenSSLEngineOptions;
import io.vertx.core.net.PemTrustOptions;
import io.vertx.up.log.Annal;
import io.vertx.up.uca.micro.ssl.TrustPipe;
import io.vertx.up.fn.Fn;
import io.vertx.quiz.core.tls.Trust;

public class PemTrust implements TrustPipe {

    private static final Annal LOGGER = Annal.get(PemTrust.class);

    private static final String PATH_CERT = "cert";

    @Override
    public Handler parse(
            final JsonObject options) {
        return Fn.getNull(() -> {
            final PemTrustOptions pem = Fn.getSemi(
                    !options.containsKey(PATH_CERT), LOGGER,
                    Trust.CLIENT_PEM,
                    () -> new PemTrustOptions().addCertPath(PATH_CERT)
            );
            return option -> option
                    .setSsl(true)
                    .setUseAlpn(true)
                    .setPemTrustOptions(pem)
                    .setOpenSslEngineOptions(new OpenSSLEngineOptions());
        }, options);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy