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

com.firefly.net.tcp.secure.openssl.nativelib.PemEncoded Maven / Gradle / Ivy

There is a newer version: 5.0.0-dev6
Show newest version
package com.firefly.net.tcp.secure.openssl.nativelib;


import java.nio.ByteBuffer;

/**
 * A marker interface for PEM encoded values.
 */
interface PemEncoded {

    /**
     * Returns {@code true} if the PEM encoded value is considered
     * sensitive information such as a private key.
     */
    boolean isSensitive();

    ByteBuffer content();

    PemEncoded copy();

    PemEncoded duplicate();

    PemEncoded replace(ByteBuffer content);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy