public final class SslSessionTicketKey
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static int |
AES_KEY_SIZE
Size of session ticket key AES key
|
static int |
HMAC_KEY_SIZE
Size of session ticket key HMAC key
|
static int |
NAME_SIZE
Size of session ticket key name
|
static int |
TICKET_KEY_SIZE
Size of session ticket key
|
| Constructor and Description |
|---|
SslSessionTicketKey(byte[] name,
byte[] hmacKey,
byte[] aesKey)
Construct SessionTicketKey.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
aesKey()
Get AES Key.
|
boolean |
equals(java.lang.Object o) |
int |
hashCode() |
byte[] |
hmacKey()
Get HMAC key.
|
byte[] |
name()
Get name.
|
java.lang.String |
toString() |
public static final int NAME_SIZE
public static final int HMAC_KEY_SIZE
public static final int AES_KEY_SIZE
public static final int TICKET_KEY_SIZE
public SslSessionTicketKey(byte[] name,
byte[] hmacKey,
byte[] aesKey)
name - the name of the session ticket keyhmacKey - the HMAC key of the session ticket keyaesKey - the AES key of the session ticket keypublic byte[] name()
public byte[] hmacKey()
public byte[] aesKey()
public boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.ObjectCopyright © 2020-2024 The Netty Project. All Rights Reserved.