org.mozilla.jss.SecretDecoderRing

Class Encoding

Implemented Interfaces:
ASN1Value

public class Encoding
extends java.lang.Object
implements ASN1Value

An ASN.1 class for encoding the SecretDecoderRing result. This class is used internally by the SecretDecoderRing. You need not use this class directly in order to use the SecretDecoderRing.

Nested Class Summary

static class
Encoding.Template
An ASN.1 class for decoding the SecretDecoderRing result.

Field Summary

static Tag
TAG

Constructor Summary

Encoding(byte[] keyID, byte[] iv, OBJECT_IDENTIFIER encOID, byte[] ctext)

Method Summary

void
encode(OutputStream ostream)
Write this value's DER encoding to an output stream using its own base tag.
void
encode(Tag implicitTag, OutputStream ostream)
Write this value's DER encoding to an output stream using an implicit tag.
byte[]
getCiphertext()
OBJECT_IDENTIFIER
getEncryptionOID()
byte[]
getIv()
byte[]
getKeyID()
Tag
getTag()
Returns the base tag for this type, not counting any tags that may be imposed on it by its context.
static Encoding.Template
getTemplate()

Field Details

TAG

public static final Tag TAG

Constructor Details

Encoding

public Encoding(byte[] keyID,
                byte[] iv,
                OBJECT_IDENTIFIER encOID,
                byte[] ctext)

Method Details

encode

public void encode(OutputStream ostream)
            throws IOException
Write this value's DER encoding to an output stream using its own base tag.
Specified by:
encode in interface ASN1Value

encode

public void encode(Tag implicitTag,
                   OutputStream ostream)
            throws IOException
Write this value's DER encoding to an output stream using an implicit tag.
Specified by:
encode in interface ASN1Value

getCiphertext

public byte[] getCiphertext()

getEncryptionOID

public OBJECT_IDENTIFIER getEncryptionOID()

getIv

public byte[] getIv()

getKeyID

public byte[] getKeyID()

getTag

public Tag getTag()
Returns the base tag for this type, not counting any tags that may be imposed on it by its context.
Specified by:
getTag in interface ASN1Value

getTemplate

public static Encoding.Template getTemplate()