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

org.bouncycastle.crypto.tls.NameType Maven / Gradle / Ivy

package org.bouncycastle.crypto.tls;

public class NameType
{
    /*
     * RFC 3546 3.1.
     */
    public static final short host_name = 0;

    public static boolean isValid(short nameType)
    {
        return nameType == host_name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy