CryptoServiceInfo

data class CryptoServiceInfo(val name: String, val lookup: String, val algorithm: String, val providerName: String, val providerVersion: String)

Which security provider serves one cryptographic lookup, read off the instance the platform returned.

Parameters

name

what the lookup is for, e.g. Asset cipher.

lookup

the lookup performed, as written in the source, e.g. KeyGenerator.getInstance("AES").

algorithm

the algorithm the returned instance reports, e.g. AES/CBC/PKCS5PADDING.

Constructors

Link copied to clipboard
constructor(name: String, lookup: String, algorithm: String, providerName: String, providerVersion: String)

Properties

Link copied to clipboard
val algorithm: String
Link copied to clipboard
val lookup: String
Link copied to clipboard
val name: String
Link copied to clipboard
val providerName: String
Link copied to clipboard
val providerVersion: String