RelativeDistinguishedName

@Serializable
data class RelativeDistinguishedName(val attrsAndValues: List<AttributeTypeAndValue>) : Asn1Encodable<Asn1Set> (source)

X.500 Name (used in X.509 Certificates)

Constructors

Link copied to clipboard
constructor(singleItem: AttributeTypeAndValue)
constructor(attrsAndValues: List<AttributeTypeAndValue>)

Types

Link copied to clipboard

Properties

Link copied to clipboard

Functions

Link copied to clipboard

Convenience function to directly get the DER-encoded representation of the implementing object

Link copied to clipboard

Exception-free version of encodeToDer

Link copied to clipboard
open fun encodeToDerSafe(): KmmResult<ByteArray>

Safe version of encodeToDer, wrapping the result into a KmmResult

Link copied to clipboard
open override fun encodeToTlv(): Asn1Set

Encodes the implementing object into an A

Link copied to clipboard

Exception-free version of encodeToTlv

Link copied to clipboard
open fun encodeToTlvSafe(): KmmResult<Asn1Set>

Safe version of encodeToTlv, wrapping the result into a KmmResult

Link copied to clipboard
open override fun toString(): String