File: DERObject.java

package info (click to toggle)
libitext-java 1.4.5-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,748 kB
  • ctags: 12,714
  • sloc: java: 88,264; xml: 305; makefile: 19
file content (17 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* see bouncycastle_license.txt */

package com.lowagie.bc.asn1;

import java.io.IOException;

public abstract class DERObject
    implements DERTags, DEREncodable
{
    public DERObject getDERObject()
    {
        return this;
    }

    abstract void encode(DEROutputStream out)
        throws IOException;
}