aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pg/src/main/java/org/spongycastle/bcpg/UserAttributeSubpacket.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pg/src/main/java/org/spongycastle/bcpg/UserAttributeSubpacket.java')
-rw-r--r--libraries/spongycastle/pg/src/main/java/org/spongycastle/bcpg/UserAttributeSubpacket.java91
1 files changed, 91 insertions, 0 deletions
diff --git a/libraries/spongycastle/pg/src/main/java/org/spongycastle/bcpg/UserAttributeSubpacket.java b/libraries/spongycastle/pg/src/main/java/org/spongycastle/bcpg/UserAttributeSubpacket.java
new file mode 100644
index 000000000..fabbc7a84
--- /dev/null
+++ b/libraries/spongycastle/pg/src/main/java/org/spongycastle/bcpg/UserAttributeSubpacket.java
@@ -0,0 +1,91 @@
+package org.spongycastle.bcpg;
+
+import org.spongycastle.util.Arrays;
+
+import java.io.IOException;
+import java.io.OutputStream;
+
+/**
+ * Basic type for a user attribute sub-packet.
+ */
+public class UserAttributeSubpacket
+{
+ int type;
+
+ protected byte[] data;
+
+ protected UserAttributeSubpacket(
+ int type,
+ byte[] data)
+ {
+ this.type = type;
+ this.data = data;
+ }
+
+ public int getType()
+ {
+ return type;
+ }
+
+ /**
+ * return the generic data making up the packet.
+ */
+ public byte[] getData()
+ {
+ return data;
+ }
+
+ public void encode(
+ OutputStream out)
+ throws IOException
+ {
+ int bodyLen = data.length + 1;
+
+ if (bodyLen < 192)
+ {
+ out.write((byte)bodyLen);
+ }
+ else if (bodyLen <= 8383)
+ {
+ bodyLen -= 192;
+
+ out.write((byte)(((bodyLen >> 8) & 0xff) + 192));
+ out.write((byte)bodyLen);
+ }
+ else
+ {
+ out.write(0xff);
+ out.write((byte)(bodyLen >> 24));
+ out.write((byte)(bodyLen >> 16));
+ out.write((byte)(bodyLen >> 8));
+ out.write((byte)bodyLen);
+ }
+
+ out.write(type);
+ out.write(data);
+ }
+
+ public boolean equals(
+ Object o)
+ {
+ if (o == this)
+ {
+ return true;
+ }
+
+ if (!(o instanceof UserAttributeSubpacket))
+ {
+ return false;
+ }
+
+ UserAttributeSubpacket other = (UserAttributeSubpacket)o;
+
+ return this.type == other.type
+ && Arrays.areEqual(this.data, other.data);
+ }
+
+ public int hashCode()
+ {
+ return type ^ Arrays.hashCode(data);
+ }
+}