Updated on 2026-08-14

This commit is contained in:
Tangem 2025-01-27 12:23:42 +03:00
parent 11c0834815
commit d27c57cd84
20 changed files with 279 additions and 93 deletions

View file

@ -48,5 +48,9 @@ internal class DefaultVisaAuthTokenStorage @Inject constructor(
?.let(tokensAdapter::fromJson)
}
override fun remove(cardId: String) {
secureStorage.delete(createKey(cardId))
}
private fun createKey(cardId: String): String = "visa_auth_tokens_$cardId"
}