summaryrefslogtreecommitdiffstats
path: root/src/org/uic/header/SignedDataType.java
diff options
context:
space:
mode:
authorCGantert345 <57003061+CGantert345@users.noreply.github.com>2020-07-28 17:57:25 +0200
committerCGantert345 <57003061+CGantert345@users.noreply.github.com>2020-07-28 17:57:25 +0200
commitb17ce13cc31abd088088bf8ab26cc924a6a36585 (patch)
tree5588e1ccc212213097500f4cb43fa0e3e68e323b /src/org/uic/header/SignedDataType.java
parentDraft of the new DOSIPAS included (diff)
downloadUIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.gz
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.bz2
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.lz
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.xz
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.tar.zst
UIC-barcode-b17ce13cc31abd088088bf8ab26cc924a6a36585.zip
Diffstat (limited to 'src/org/uic/header/SignedDataType.java')
-rw-r--r--src/org/uic/header/SignedDataType.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/org/uic/header/SignedDataType.java b/src/org/uic/header/SignedDataType.java
deleted file mode 100644
index 2cd2acd..0000000
--- a/src/org/uic/header/SignedDataType.java
+++ /dev/null
@@ -1,67 +0,0 @@
-package org.uic.header;
-
-import net.gcdc.asn1.datatypes.Asn1Optional;
-import net.gcdc.asn1.datatypes.Sequence;
-import net.gcdc.asn1.datatypesimpl.OctetString;
-
-/**
- * The Class SignedDataType.
- */
-@Sequence
-public class SignedDataType {
-
- /** The data. */
- public DataBlockType dataBlock;
-
- /** The signature. */
- @Asn1Optional public OctetString signature;
-
- /**
- * Gets the data.
- *
- * @return the data
- */
- public DataBlockType getDataBlock() {
- return dataBlock;
- }
-
- /**
- * Sets the data.
- *
- * @param data the new data
- */
- public void setDataBlock(DataBlockType dataBlock) {
- this.dataBlock = dataBlock;
- }
-
- /**
- * Gets the signature.
- *
- * @return the signature
- */
- public OctetString getSignature() {
- return signature;
- }
-
- /**
- * Sets the signature.
- *
- * @param signature the signature
- */
- public void setSignature(OctetString signature) {
- this.signature = signature;
- }
-
-
- /**
- * Sets the signature.
- *
- * @param signature the signature
- */
- public void setSignature(byte[] signature) {
- this.signature = new OctetString(signature);
- }
-
-
-
-}