Package org.minidns.record
Class NSEC3PARAM
- java.lang.Object
-
- org.minidns.record.Data
-
- org.minidns.record.NSEC3PARAM
-
public class NSEC3PARAM extends Data
NSEC3PARAM record payload.
-
-
Field Summary
Fields Modifier and Type Field Description byteflagsNSEC3.HashAlgorithmhashAlgorithmThe cryptographic hash algorithm used.bytehashAlgorithmByteThe cryptographic hash algorithm used.intiterationsThe number of iterations the hash algorithm is applied.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetSaltLength()Record.TYPEgetType()The payload type.static NSEC3PARAMparse(java.io.DataInputStream dis)voidserialize(java.io.DataOutputStream dos)The internal method used to serialize Data subclasses.java.lang.StringtoString()-
Methods inherited from class org.minidns.record.Data
equals, hashCode, length, toByteArray, toOutputStream, toOutputStream
-
-
-
-
Field Detail
-
hashAlgorithm
public final NSEC3.HashAlgorithm hashAlgorithm
The cryptographic hash algorithm used.
-
hashAlgorithmByte
public final byte hashAlgorithmByte
The cryptographic hash algorithm used.
-
flags
public final byte flags
-
iterations
public final int iterations
The number of iterations the hash algorithm is applied.
-
-
Method Detail
-
parse
public static NSEC3PARAM parse(java.io.DataInputStream dis) throws java.io.IOException
- Throws:
java.io.IOException
-
getType
public Record.TYPE getType()
Description copied from class:DataThe payload type.
-
serialize
public void serialize(java.io.DataOutputStream dos) throws java.io.IOException
Description copied from class:DataThe internal method used to serialize Data subclasses.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getSaltLength
public int getSaltLength()
-
-