KeyPair

data class KeyPair(val publicKey: RSAPublicKey, val privateKey: PrivateKey, var keyAlias: String)

Represents a cryptographic key pair used for device binding operations.

Constructors

Link copied to clipboard
constructor(publicKey: RSAPublicKey, privateKey: PrivateKey, keyAlias: String)

Properties

Link copied to clipboard

The alias used to identify this key pair in the Android KeyStore

Link copied to clipboard

The private key component

Link copied to clipboard

The RSA public key component