blob: 733e4e959fb529da47f60f468c758877f1c34d83 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace Org.BouncyCastle.Bcpg.OpenPgp
{
/// <remarks>
/// A PGP marker packet - in general these should be ignored other than where
/// the idea is to preserve the original input stream.
/// </remarks>
public class PgpMarker
: PgpObject
{
private readonly MarkerPacket p;
public PgpMarker(
BcpgInputStream bcpgIn)
{
p = (MarkerPacket) bcpgIn.ReadPacket();
}
}
}
|