All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.binaryfoo.crypto.CaPublicKey.kt Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package io.github.binaryfoo.crypto

import io.github.binaryfoo.tlv.ISOUtil

/**
 * One of the trust anchors. From the scheme: Visa, Mastercard, JCB, Amex, ...
 */
public data class CaPublicKey(
        val rid: String,
        val index: String,
        public override val exponent: String,
        public override val modulus: String) : PublicKeyCertificate {
    override val name: String = "CA public key (${rid},${index})"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy