Modifier and Type | Class and Description |
---|---|
static class |
CERTRecord.CertificateType
Certificate type identifiers.
|
Modifier and Type | Field and Description |
---|---|
private int |
alg |
private byte[] |
cert |
private int |
certType |
private int |
keyTag |
static int |
OID
Certificate format defined by IOD
|
static int |
PGP
Pretty Good Privacy
|
static int |
PKIX
PKIX (X.509v3)
|
static int |
SPKI
Simple Public Key Infrastructure
|
static int |
URI
Certificate format defined by URI
|
Constructor and Description |
---|
CERTRecord() |
CERTRecord(Name name,
int dclass,
long ttl,
int certType,
int keyTag,
int alg,
byte[] cert)
Creates a CERT Record from the given data
|
Modifier and Type | Method and Description |
---|---|
int |
getAlgorithm()
Returns the algorithm of the associated KEYRecord, if present
|
byte[] |
getCert()
Returns the binary representation of the certificate
|
int |
getCertType()
Returns the type of certificate
|
int |
getKeyTag()
Returns the ID of the associated KEYRecord, if present
|
protected void |
rdataFromString(Tokenizer st,
Name origin)
Converts the text format of an RR to the internal format - must be overriden
|
protected void |
rrFromWire(DNSInput in)
Converts the type-specific RR to wire format - must be overridden
|
protected java.lang.String |
rrToString()
Converts rdata to a String
|
protected void |
rrToWire(DNSOutput out,
Compression c,
boolean canonical)
Converts the type-specific RR to wire format - must be overridden.
|
byteArrayFromString, byteArrayToString, checkByteArrayLength, checkName, checkU16, checkU32, checkU8, cloneRecord, compareTo, equals, fromString, fromString, fromWire, fromWire, fromWire, getAdditionalName, getDClass, getName, getRRsetType, getTTL, getType, hashCode, newRecord, newRecord, newRecord, newRecord, rdataToString, rdataToWireCanonical, sameRRset, setTTL, toString, toWire, toWire, toWireCanonical, unknownToString, withDClass, withName, writeReplace
public static final int PKIX
public static final int SPKI
public static final int PGP
public static final int URI
public static final int OID
private int certType
private int keyTag
private int alg
private byte[] cert
CERTRecord()
public CERTRecord(Name name, int dclass, long ttl, int certType, int keyTag, int alg, byte[] cert)
certType
- The type of certificate (see constants)keyTag
- The ID of the associated KEYRecord, if presentalg
- The algorithm of the associated KEYRecord, if presentcert
- Binary data representing the certificateprotected void rrFromWire(DNSInput in) throws java.io.IOException
Record
rrFromWire
in class Record
java.io.IOException
protected void rdataFromString(Tokenizer st, Name origin) throws java.io.IOException
Record
rdataFromString
in class Record
java.io.IOException
protected java.lang.String rrToString()
rrToString
in class Record
public int getCertType()
public int getKeyTag()
public int getAlgorithm()
public byte[] getCert()
protected void rrToWire(DNSOutput out, Compression c, boolean canonical)
Record