Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bouncycastle/crypto/tls/NewSessionTicket.java')
-rw-r--r--src/main/java/org/bouncycastle/crypto/tls/NewSessionTicket.java20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/main/java/org/bouncycastle/crypto/tls/NewSessionTicket.java b/src/main/java/org/bouncycastle/crypto/tls/NewSessionTicket.java
index 24b75ba7..c80968ff 100644
--- a/src/main/java/org/bouncycastle/crypto/tls/NewSessionTicket.java
+++ b/src/main/java/org/bouncycastle/crypto/tls/NewSessionTicket.java
@@ -4,30 +4,38 @@ import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
-public class NewSessionTicket {
+public class NewSessionTicket
+{
protected long ticketLifetimeHint;
protected byte[] ticket;
- public NewSessionTicket(long ticketLifetimeHint, byte[] ticket) {
+ public NewSessionTicket(long ticketLifetimeHint, byte[] ticket)
+ {
this.ticketLifetimeHint = ticketLifetimeHint;
this.ticket = ticket;
}
- public long getTicketLifetimeHint() {
+ public long getTicketLifetimeHint()
+ {
return ticketLifetimeHint;
}
- public byte[] getTicket() {
+ public byte[] getTicket()
+ {
return ticket;
}
- public void encode(OutputStream output) throws IOException {
+ public void encode(OutputStream output)
+ throws IOException
+ {
TlsUtils.writeUint32(ticketLifetimeHint, output);
TlsUtils.writeOpaque16(ticket, output);
}
- public static NewSessionTicket parse(InputStream input) throws IOException {
+ public static NewSessionTicket parse(InputStream input)
+ throws IOException
+ {
long ticketLifetimeHint = TlsUtils.readUint32(input);
byte[] ticket = TlsUtils.readOpaque16(input);
return new NewSessionTicket(ticketLifetimeHint, ticket);