org.bouncycastle.bcpg.UserAttributePacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcpg-debug-jdk18on Show documentation
Show all versions of bcpg-debug-jdk18on Show documentation
The Bouncy Castle Java API for handling the OpenPGP protocol. This jar contains the OpenPGP API for JDK 1.8 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.
The newest version!
package org.bouncycastle.bcpg;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Vector;
/**
* Basic type for a user attribute packet.
*/
public class UserAttributePacket
extends ContainedPacket
{
private UserAttributeSubpacket[] subpackets;
public UserAttributePacket(
BCPGInputStream in)
throws IOException
{
this(in, false);
}
public UserAttributePacket(
BCPGInputStream in,
boolean newPacketFormat)
throws IOException
{
super(USER_ATTRIBUTE, newPacketFormat);
UserAttributeSubpacketInputStream sIn = new UserAttributeSubpacketInputStream(in);
UserAttributeSubpacket sub;
Vector v= new Vector();
while ((sub = sIn.readPacket()) != null)
{
v.addElement(sub);
}
subpackets = new UserAttributeSubpacket[v.size()];
for (int i = 0; i != subpackets.length; i++)
{
subpackets[i] = (UserAttributeSubpacket)v.elementAt(i);
}
}
public UserAttributePacket(
UserAttributeSubpacket[] subpackets)
{
super(USER_ATTRIBUTE);
this.subpackets = subpackets;
}
public UserAttributeSubpacket[] getSubpackets()
{
return subpackets;
}
public void encode(
BCPGOutputStream out)
throws IOException
{
ByteArrayOutputStream bOut = new ByteArrayOutputStream();
for (int i = 0; i != subpackets.length; i++)
{
subpackets[i].encode(bOut);
}
out.writePacket(hasNewPacketFormat(), USER_ATTRIBUTE, bOut.toByteArray());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy