aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/lowagie/bc/asn1/DERApplicationSpecific.java
diff options
context:
space:
mode:
authortknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2008-11-25 12:04:30 +0000
committertknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2008-11-25 12:04:30 +0000
commit13d6dc3a6a5e8bd3c17997351a0e6f087eb301a2 (patch)
tree3ed3bcd97f1980169ef095a49f7facc8a0df0465 /src/main/java/com/lowagie/bc/asn1/DERApplicationSpecific.java
parentc68ad0ec056b37c82debebcecfcde1866d61b4d9 (diff)
downloadpdf-as-3-13d6dc3a6a5e8bd3c17997351a0e6f087eb301a2.tar.gz
pdf-as-3-13d6dc3a6a5e8bd3c17997351a0e6f087eb301a2.tar.bz2
pdf-as-3-13d6dc3a6a5e8bd3c17997351a0e6f087eb301a2.zip
Removing itext from source.
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@302 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'src/main/java/com/lowagie/bc/asn1/DERApplicationSpecific.java')
-rw-r--r--src/main/java/com/lowagie/bc/asn1/DERApplicationSpecific.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/main/java/com/lowagie/bc/asn1/DERApplicationSpecific.java b/src/main/java/com/lowagie/bc/asn1/DERApplicationSpecific.java
deleted file mode 100644
index 2ef11d4..0000000
--- a/src/main/java/com/lowagie/bc/asn1/DERApplicationSpecific.java
+++ /dev/null
@@ -1,67 +0,0 @@
-package com.lowagie.bc.asn1;
-
-import java.io.ByteArrayInputStream;
-import java.io.ByteArrayOutputStream;
-import java.io.IOException;
-
-/**
- * Base class for an application specific object
- */
-public class DERApplicationSpecific
- extends DERObject
-{
- private int tag;
- private byte[] octets;
-
- public DERApplicationSpecific(
- int tag,
- byte[] octets)
- {
- this.tag = tag;
- this.octets = octets;
- }
-
- public DERApplicationSpecific(
- int tag,
- DEREncodable object)
- throws IOException
- {
- this.tag = tag | DERTags.CONSTRUCTED;
-
- ByteArrayOutputStream baos = new ByteArrayOutputStream();
- DEROutputStream dos = new DEROutputStream(baos);
-
- dos.writeObject(object);
-
- this.octets = baos.toByteArray();
- }
-
- public boolean isConstructed()
- {
- return (tag & DERTags.CONSTRUCTED) != 0;
- }
-
- public byte[] getContents()
- {
- return octets;
- }
-
- public int getApplicationTag()
- {
- return tag & 0x1F;
- }
-
- public DERObject getObject()
- throws IOException
- {
- return new ASN1InputStream(new ByteArrayInputStream(getContents())).readObject();
- }
-
- /* (non-Javadoc)
- * @see org.bouncycastle.asn1.DERObject#encode(org.bouncycastle.asn1.DEROutputStream)
- */
- void encode(DEROutputStream out) throws IOException
- {
- out.writeEncoded(DERTags.APPLICATION | tag, octets);
- }
-}