org.mozilla.jss.util

Class Base64InputStream


public class Base64InputStream
extends FilterInputStream

Reads in base-64 encoded input and spits out the raw binary decoding.

Constructor Summary

Base64InputStream(InputStream in)

Method Summary

int
available()
void
close()
static void
main(args[] )
void
mark(int readlimit)
boolean
markSupported()
int
read()
int
read(byte[] b, int off, int len)
void
reset()
long
skip(long n)

Constructor Details

Base64InputStream

public Base64InputStream(InputStream in)

Method Details

available

public int available()
            throws IOException

close

public void close()
            throws IOException

main

public static void main(args[] )
            throws Exception

mark

public void mark(int readlimit)

markSupported

public boolean markSupported()

read

public int read()
            throws IOException

read

public int read(byte[] b,
                int off,
                int len)
            throws IOException

reset

public void reset()
            throws IOException

skip

public long skip(long n)
            throws IOException