Package org.minidns.record
Class OPENPGPKEY
- java.lang.Object
-
- org.minidns.record.Data
-
- org.minidns.record.OPENPGPKEY
-
public class OPENPGPKEY extends Data
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getPublicKeyPacket()
java.lang.String
getPublicKeyPacketBase64()
Record.TYPE
getType()
The payload type.static OPENPGPKEY
parse(java.io.DataInputStream dis, int length)
void
serialize(java.io.DataOutputStream dos)
The internal method used to serialize Data subclasses.java.lang.String
toString()
-
Methods inherited from class org.minidns.record.Data
equals, hashCode, length, toByteArray, toOutputStream, toOutputStream
-
-
-
-
Method Detail
-
parse
public static OPENPGPKEY parse(java.io.DataInputStream dis, int length) throws java.io.IOException
- Throws:
java.io.IOException
-
getType
public Record.TYPE getType()
Description copied from class:Data
The payload type.
-
serialize
public void serialize(java.io.DataOutputStream dos) throws java.io.IOException
Description copied from class:Data
The internal method used to serialize Data subclasses.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getPublicKeyPacketBase64
public java.lang.String getPublicKeyPacketBase64()
-
getPublicKeyPacket
public byte[] getPublicKeyPacket()
-
-