blob: 2310dc7b0b033a6a2ac76792ea353a784f6f9562 [file] [log] [blame]
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;
}
}