Top Description Fields Constructors Methods
sun.security.krb5.internal

public Class ETypeInfo

extends Object
Class Inheritance
Imports
java.io.IOException, sun.security.krb5.Asn1Exception, sun.security.krb5.internal.util.KerberosString, sun.security.util.*

Implements the ASN.1 ETYPE-INFO-ENTRY type. ETYPE-INFO-ENTRY ::= SEQUENCE { etype [0] Int32, salt [1] OCTET STRING OPTIONAL }
Author
Seema Malkani

Field Summary

Modifier and TypeField and Description
private int
private String
private static final byte
private static final byte

Constructor Summary

AccessConstructor and Description
private
public
ETypeInfo(int etype, String salt)

public
ETypeInfo(DerValue
a DER-encoded data.
encoding
)

Constructs a ETypeInfo object.

Method Summary

Modifier and TypeMethod and Description
public byte[]

Returns:

byte array of the encoded data.
asn1Encode
()

Encodes this object to an OutputStream.

public Object
clone()

Overrides java.lang.Object.clone.

Creates and returns a copy of this object.

public int
public String
Inherited from java.lang.Object:
equalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

etypeback to summary
private int etype
saltback to summary
private String salt
TAG_TYPEback to summary
private static final byte TAG_TYPE
TAG_VALUEback to summary
private static final byte TAG_VALUE

Constructor Detail

ETypeInfoback to summary
private ETypeInfo()
ETypeInfoback to summary
public ETypeInfo(int etype, String salt)
ETypeInfoback to summary
public ETypeInfo(DerValue encoding) throws Asn1Exception, IOException

Constructs a ETypeInfo object.

Parameters
encoding:DerValue

a DER-encoded data.

Exceptions
Asn1Exception:
if an error occurs while decoding an ASN1 encoded data.
IOException:
if an I/O error occurs while reading encoded data.

Method Detail

asn1Encodeback to summary
public byte[] asn1Encode() throws Asn1Exception, IOException

Encodes this object to an OutputStream.

Returns:byte[]

byte array of the encoded data.

Exceptions
Asn1Exception:
on encoding errors.
IOException:
if an I/O error occurs while reading encoded data.
cloneback to summary
public Object clone()

Overrides java.lang.Object.clone.

Doc from java.lang.Object.clone.

Creates and returns a copy of this object. The precise meaning of "copy" may depend on the class of the object. The general intent is that, for any object x, the expression:

x.clone() != x
will be true, and that the expression:
x.clone().getClass() == x.getClass()
will be true, but these are not absolute requirements. While it is typically the case that:
x.clone().equals(x)
will be true, this is not an absolute requirement.

By convention, the returned object should be obtained by calling super.clone. If a class and all of its superclasses (except Object) obey this convention, it will be the case that x.clone().getClass() == x.getClass().

By convention, the object returned by this method should be independent of this object (which is being cloned). To achieve this independence, it may be necessary to modify one or more fields of the object returned by super.clone before returning it. Typically, this means copying any mutable objects that comprise the internal "deep structure" of the object being cloned and replacing the references to these objects with references to the copies. If a class contains only primitive fields or references to immutable objects, then it is usually the case that no fields in the object returned by super.clone need to be modified.

Returns:Object

a clone of this instance.

getETypeback to summary
public int getEType()
getSaltback to summary
public String getSalt()