io.github.binaryfoo.crypto.CaPublicKey.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of emv-bertlv Show documentation
Show all versions of emv-bertlv Show documentation
Some decoders for the data used in EMV credit card transactions.
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