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

com.yahoo.vespa.config.server.tenant.OperatorCertificateSerializer Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.tenant;

import com.yahoo.security.X509CertificateUtils;
import com.yahoo.slime.Cursor;
import com.yahoo.slime.Inspector;
import com.yahoo.slime.Slime;
import com.yahoo.slime.SlimeUtils;

import java.security.cert.X509Certificate;
import java.util.List;

/**
 * Serializer for operator certificates.
 * The certificates are serialized as a list of PEM strings.
 * @author tokle
 */
public class OperatorCertificateSerializer {

    private final static String certificateField = "certificates";

    public static Slime toSlime(List certificateList) {
        Slime slime = new Slime();
        var root = slime.setObject();
        Cursor array = root.setArray(certificateField);
        toSlime(certificateList, array);
        return slime;
    }

    public static void toSlime(List certificateList, Cursor array) {
        certificateList.stream()
                .map(X509CertificateUtils::toPem)
                .forEach(array::addString);
    }

    public static List fromSlime(Inspector object) {
        return SlimeUtils.entriesStream(object.field(certificateField))
                .map(Inspector::asString)
                .map(X509CertificateUtils::fromPem)
                .toList();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy