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.