io.github.binaryfoo.crypto.PublicKeyCertificate.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
/**
* Crypto public key. Covers the chain from Scheme (CA) to Issuer (Bank) and then ICC (chip).
*/
interface PublicKeyCertificate {
val exponent: String?
val modulus: String
val name: String
val modulusLength: Int
get() = modulus.length / 2
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy