summaryrefslogtreecommitdiffstats
path: root/src/org/uic/header/SignedDataType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/uic/header/SignedDataType.java')
-rw-r--r--src/org/uic/header/SignedDataType.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/org/uic/header/SignedDataType.java b/src/org/uic/header/SignedDataType.java
new file mode 100644
index 0000000..1cbaa8e
--- /dev/null
+++ b/src/org/uic/header/SignedDataType.java
@@ -0,0 +1,58 @@
+package org.uic.header;
+
+import net.gcdc.asn1.datatypes.Asn1Optional;
+import net.gcdc.asn1.datatypes.Sequence;
+import net.gcdc.asn1.datatypesimpl.OctetString;
+
+// TODO: Auto-generated Javadoc
+/**
+ * The Class SignedDataType.
+ */
+@Sequence
+public class SignedDataType {
+
+ /** The data. */
+ public DataBlockType data;
+
+ /** The signature. */
+ @Asn1Optional public OctetString signature;
+
+ /**
+ * Gets the data.
+ *
+ * @return the data
+ */
+ public DataBlockType getData() {
+ return data;
+ }
+
+ /**
+ * Sets the data.
+ *
+ * @param data the new data
+ */
+ public void setData(DataBlockType data) {
+ this.data = data;
+ }
+
+ /**
+ * Gets the signature.
+ *
+ * @return the signature
+ */
+ public OctetString getSignature() {
+ return signature;
+ }
+
+ /**
+ * Sets the signature.
+ *
+ * @param signature the new signature
+ */
+ public void setSignature(OctetString signature) {
+ this.signature = signature;
+ }
+
+
+
+}