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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy