You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
65 lines
1.5 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
using System.IO; |
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Bcpg |
|
{ |
|
/// <remarks>Generic literal data packet.</remarks> |
|
public class LiteralDataPacket |
|
: InputStreamPacket |
|
{ |
|
private int format; |
|
private byte[] fileName; |
|
private long modDate; |
|
|
|
internal LiteralDataPacket( |
|
BcpgInputStream bcpgIn) |
|
: base(bcpgIn) |
|
{ |
|
format = bcpgIn.ReadByte(); |
|
int len = bcpgIn.ReadByte(); |
|
|
|
fileName = new byte[len]; |
|
for (int i = 0; i != len; ++i) |
|
{ |
|
int ch = bcpgIn.ReadByte(); |
|
if (ch < 0) |
|
throw new IOException("literal data truncated in header"); |
|
|
|
fileName[i] = (byte)ch; |
|
} |
|
|
|
modDate = (((uint)bcpgIn.ReadByte() << 24) |
|
| ((uint)bcpgIn.ReadByte() << 16) |
|
| ((uint)bcpgIn.ReadByte() << 8) |
|
| (uint)bcpgIn.ReadByte()) * 1000L; |
|
} |
|
|
|
/// <summary>The format tag value.</summary> |
|
public int Format |
|
{ |
|
get { return format; } |
|
} |
|
|
|
/// <summary>The modification time of the file in milli-seconds (since Jan 1, 1970 UTC)</summary> |
|
public long ModificationTime |
|
{ |
|
get { return modDate; } |
|
} |
|
|
|
public string FileName |
|
{ |
|
get { return Strings.FromUtf8ByteArray(fileName); } |
|
} |
|
|
|
public byte[] GetRawFileName() |
|
{ |
|
return Arrays.Clone(fileName); |
|
} |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|