36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Bcpg.Sig
|
|
{
|
|
/**
|
|
* packet giving signature expiration time.
|
|
*/
|
|
public class SignatureExpirationTime
|
|
: SignatureSubpacket
|
|
{
|
|
protected static byte[] TimeToBytes(long t)
|
|
{
|
|
return Pack.UInt32_To_BE((uint)t);
|
|
}
|
|
|
|
public SignatureExpirationTime(bool critical, bool isLongLength, byte[] data)
|
|
: base(SignatureSubpacketTag.ExpireTime, critical, isLongLength, data)
|
|
{
|
|
}
|
|
|
|
public SignatureExpirationTime(bool critical, long seconds)
|
|
: base(SignatureSubpacketTag.ExpireTime, critical, false, TimeToBytes(seconds))
|
|
{
|
|
}
|
|
|
|
/**
|
|
* return time in seconds before signature expires after creation time.
|
|
*/
|
|
public long Time => Pack.BE_To_UInt32(data, 0);
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|