Magisk/app/src/main/java/com/topjohnwu/magisk/ui/safetynet/SafetyNetHelper.kt

15 lines
273 B
Kotlin

package com.topjohnwu.magisk.ui.safetynet
import android.content.Context
interface SafetyNetHelper {
val version: Int
fun attest(context: Context, nonce: ByteArray, callback: Callback)
interface Callback {
fun onResponse(response: String?)
}
}