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

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

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

/**
 * Crypto public key. Covers the chain from Scheme (CA) to Issuer (Bank) and then ICC (chip).
 */
public trait PublicKeyCertificate {
    public val exponent: String?
    public val modulus: String
    public val name: String
    public val modulusLength: Int
        get() = modulus.size / 2
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy