add all
This commit is contained in:
51
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/tls/NewSessionTicket.cs
vendored
Normal file
51
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/tls/NewSessionTicket.cs
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Tls
|
||||
{
|
||||
public sealed class NewSessionTicket
|
||||
{
|
||||
private readonly long m_ticketLifetimeHint;
|
||||
private readonly byte[] m_ticket;
|
||||
|
||||
public NewSessionTicket(long ticketLifetimeHint, byte[] ticket)
|
||||
{
|
||||
this.m_ticketLifetimeHint = ticketLifetimeHint;
|
||||
this.m_ticket = ticket;
|
||||
}
|
||||
|
||||
public long TicketLifetimeHint
|
||||
{
|
||||
get { return m_ticketLifetimeHint; }
|
||||
}
|
||||
|
||||
public byte[] Ticket
|
||||
{
|
||||
get { return m_ticket; }
|
||||
}
|
||||
|
||||
/// <summary>Encode this <see cref="NewSessionTicket"/> to a <see cref="Stream"/>.</summary>
|
||||
/// <param name="output">the <see cref="Stream"/> to encode to.</param>
|
||||
/// <exception cref="IOException"/>
|
||||
public void Encode(Stream output)
|
||||
{
|
||||
TlsUtilities.WriteUint32(TicketLifetimeHint, output);
|
||||
TlsUtilities.WriteOpaque16(Ticket, output);
|
||||
}
|
||||
|
||||
/// <summary>Parse a <see cref="NewSessionTicket"/> from a <see cref="Stream"/>.</summary>
|
||||
/// <param name="input">the <see cref="Stream"/> to parse from.</param>
|
||||
/// <returns>a <see cref="NewSessionTicket"/> object.</returns>
|
||||
/// <exception cref="IOException"/>
|
||||
public static NewSessionTicket Parse(Stream input)
|
||||
{
|
||||
long ticketLifetimeHint = TlsUtilities.ReadUint32(input);
|
||||
byte[] ticket = TlsUtilities.ReadOpaque16(input);
|
||||
return new NewSessionTicket(ticketLifetimeHint, ticket);
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user