1234567891011121314151617181920212223242526272829303132333435 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using Best.HTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities;
- namespace Best.HTTP.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
|