10 lines
No EOL
188 B
Kotlin
10 lines
No EOL
188 B
Kotlin
package com.tangem
|
|
|
|
interface DataStorage {
|
|
|
|
fun getTerminalPublicKey(): ByteArray?
|
|
fun getTerminalPrivateKey(): ByteArray?
|
|
fun getPin1(): String?
|
|
fun getPin2(): String?
|
|
|
|
} |