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

org.bouncycastle.tls.ExporterLabel Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for the TLS, including a JSSE provider. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.

There is a newer version: 2.0.19
Show newest version
package org.bouncycastle.tls;

/**
 * RFC 5705
 */
public class ExporterLabel
{
    /*
     * RFC 5246
     */
    public static final String client_finished = "client finished";
    public static final String server_finished = "server finished";
    public static final String master_secret = "master secret";
    public static final String key_expansion = "key expansion";

    /*
     * RFC 5216
     */
    public static final String client_EAP_encryption = "client EAP encryption";

    /*
     * RFC 5281
     */
    public static final String ttls_keying_material = "ttls keying material";
    public static final String ttls_challenge = "ttls challenge";

    /*
     * RFC 5764
     */
    public static final String dtls_srtp = "EXTRACTOR-dtls_srtp";

    /*
     * RFC 7627
     */
    public static final String extended_master_secret = "extended master secret";

    /*
     * draft-ietf-tokbind-protocol-16
     */
    public static final String token_binding = "EXPORTER-Token-Binding";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy