blob: a175e74a618cc4ed5ab871b77d8ce336ffc07e77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
using System;
using System.Text;
namespace Org.BouncyCastle.Bcpg
{
/**
* Basic type for a user ID packet.
*/
public class UserIdPacket
: ContainedPacket
{
private readonly byte[] idData;
public UserIdPacket(
BcpgInputStream bcpgIn)
{
this.idData = bcpgIn.ReadAll();
}
public UserIdPacket(
string id)
{
this.idData = Encoding.UTF8.GetBytes(id);
}
public string GetId()
{
return Encoding.UTF8.GetString(idData, 0, idData.Length);
}
public override void Encode(
BcpgOutputStream bcpgOut)
{
bcpgOut.WritePacket(PacketTag.UserId, idData, true);
}
}
}
|