blob: 9d56c8bc31bc4f709400e4ab7b2553e071dc327d (
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
|
using System;
using System.Collections;
using Org.BouncyCastle.Bcpg.Attr;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Bcpg.OpenPgp
{
public class PgpUserAttributeSubpacketVectorGenerator
{
private IList list = Platform.CreateArrayList();
public virtual void SetImageAttribute(
ImageAttrib.Format imageType,
byte[] imageData)
{
if (imageData == null)
throw new ArgumentException("attempt to set null image", "imageData");
list.Add(new ImageAttrib(imageType, imageData));
}
public virtual PgpUserAttributeSubpacketVector Generate()
{
UserAttributeSubpacket[] a = new UserAttributeSubpacket[list.Count];
for (int i = 0; i < list.Count; ++i)
{
a[i] = (UserAttributeSubpacket)list[i];
}
return new PgpUserAttributeSubpacketVector(a);
}
}
}
|