Package org.xbill.DNS
Class SMIMEARecord
java.lang.Object
org.xbill.DNS.Record
org.xbill.DNS.TLSARecord
org.xbill.DNS.SMIMEARecord
- All Implemented Interfaces:
Serializable,Cloneable,Comparable<Record>
S/MIME cert association
- Author:
- Brian Wellington
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.xbill.DNS.TLSARecord
TLSARecord.CertificateUsage, TLSARecord.MatchingType, TLSARecord.Selector -
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionSMIMEARecord(Name name, int dclass, long ttl, int certificateUsage, int selector, int matchingType, byte[] certificateAssociationData) Creates an SMIMEA Record from the given data -
Method Summary
Methods inherited from class org.xbill.DNS.TLSARecord
getCertificateAssociationData, getCertificateUsage, getMatchingType, getSelector, rdataFromString, rrFromWire, rrToString, rrToWireMethods inherited from class org.xbill.DNS.Record
byteArrayFromString, byteArrayToString, compareTo, equals, fromString, fromString, fromWire, getAdditionalName, getDClass, getName, getRRsetType, getTTL, getType, hashCode, newRecord, newRecord, newRecord, newRecord, rdataToString, rdataToWireCanonical, sameRRset, sameRRset, toString, toWire, toWireCanonical, unknownToString, withName
-
Constructor Details
-
SMIMEARecord
public SMIMEARecord(Name name, int dclass, long ttl, int certificateUsage, int selector, int matchingType, byte[] certificateAssociationData) Creates an SMIMEA Record from the given data- Parameters:
certificateUsage- The provided association that will be used to match the certificate presented in the S/MIME handshake.selector- The part of the S/MIME certificate presented by the server that will be matched against the association data.matchingType- How the certificate association is presented.certificateAssociationData- The "certificate association data" to be matched.
-