org.bouncycastle.tls.KeyUpdateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk14 Show documentation
Show all versions of bctls-jdk14 Show documentation
The Bouncy Castle Java APIs for TLS and DTLS.
package org.bouncycastle.tls;
/**
* RFC 8446 4.6.3
*/
public class KeyUpdateRequest
{
public static final short update_not_requested = 0;
public static final short update_requested = 1;
public static String getName(short keyUpdateRequest)
{
switch (keyUpdateRequest)
{
case update_not_requested:
return "update_not_requested";
case update_requested:
return "update_requested";
default:
return "UNKNOWN";
}
}
public static String getText(short keyUpdateRequest)
{
return getName(keyUpdateRequest) + "(" + keyUpdateRequest + ")";
}
public static boolean isValid(short keyUpdateRequest)
{
return keyUpdateRequest >= update_not_requested && keyUpdateRequest <= update_requested;
}
}