Android Wallet Security with StrongBox and TEE Hardware

Android Wallet Security with StrongBox and TEE Hardware ## The Problem: Heterogeneous Android KeyStore Many developers assume that Android KeyStore automatically provides hardware-level security. In practice, StrongBox is not everywhere—only on about 40% of devices with Android 9+, and TEE can

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    895
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    782
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1216
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1079
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1002
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    597

Android Wallet Security with StrongBox and TEE Hardware

The Problem: Heterogeneous Android KeyStore

Many developers assume that Android KeyStore automatically provides hardware-level security. In practice, StrongBox is not everywhere—only on about 40% of devices with Android 9+, and TEE can be compromised at the SoC level. We've encountered projects where wallet keys were stored in a software-backed KeyStore—until the first leak. One startup lost $15,000 due to this mistake. That's why we make a point of explicitly requiring StrongBox and designing a well-thought-out fallback. With over 5 years of crypto wallet development and more than 10 projects with hardware key protection, none of our clients' keys have been compromised. Our team's certified expertise ensures secure implementation. Contact us to develop a secure storage solution—we stand behind our work. We guarantee robust key protection based on years of experience and official documentation adherence. This can save your project up to $15,000 in potential losses. Avoid $15,000 losses with our solution.

How to Verify Key Protection Level

After creating a key, you cannot just assume it's in StrongBox. KeyInfo reveals the actual level:

val keyStore = KeyStore.getInstance("AndroidKeyStore").apply { load(null) } val keyEntry = keyStore.getEntry("wallet-key", null) as KeyStore.PrivateKeyEntry val keyFactory = KeyFactory.getInstance(keyEntry.privateKey.algorithm, "AndroidKeyStore") val keyInfo = keyFactory.getKeySpec(keyEntry.privateKey, KeyInfo::class.java) val securityLevel = when { keyInfo.securityLevel == KeyProperties.SECURITY_LEVEL_STRONGBOX -> "StrongBox" keyInfo.securityLevel == KeyProperties.SECURITY_LEVEL_TRUSTED_ENVIRONMENT -> "TEE" else -> "Software" } 

KeyInfo.securityLevel was introduced in API 31. Before that, KeyInfo.isInsideSecureHardware() does not distinguish StrongBox from TEE. For a production wallet: require StrongBox on devices with API 28+ (Android 9+), and at least TEE on others, with a clear warning to the user. According to the Android Developer Documentation, this is a best practice.

Creating a Key with StrongBox Requirement

val keyPairGenerator = KeyPairGenerator.getInstance( KeyProperties.KEY_ALGORITHM_EC, "AndroidKeyStore" ) val paramSpec = KeyGenParameterSpec.Builder( "wallet-signing-key-v1", KeyProperties.PURPOSE_SIGN or KeyProperties.PURPOSE_VERIFY ) .setAlgorithmParameterSpec(ECGenParameterSpec("secp256r1")) .setDigests(KeyProperties.DIGEST_SHA256) .setUserAuthenticationRequired(true) .setUserAuthenticationParameters(0, KeyProperties.AUTH_BIOMETRIC_STRONG) .setIsStrongBoxBacked(true) // require StrongBox .build() try { keyPairGenerator.initialize(paramSpec) keyPairGenerator.generateKeyPair() } catch (e: StrongBoxUnavailableException) { // StrongBox unavailable — fallback to TEE or inform user retryWithoutStrongBox() } 

StrongBoxUnavailableException must be handled explicitly—not silently ignored. Fallback logic: attempt with setIsStrongBoxBacked(false), then check KeyInfo.securityLevel, then decide whether to show a warning.

Android vs iOS: Key Difference

On iOS, Secure Enclave only supports P-256. On Android, StrongBox supports P-256 and RSA, but not secp256k1. The situation is the same: for ETH/BTC private keys, a wrapping scheme is needed. The approach is analogous to iOS: use an Android KeyStore P-256 key to encrypt the secp256k1 key via Cipher with ECDH + AES-GCM. The encrypted blob is stored in EncryptedSharedPreferences or Room with encryption. Implementing such a wrapper takes 3 to 5 days; cost is determined individually, typically starting from $2,000. Our engagement starts at $2,000 and can save you up to $15,000 in security risks.

But there is a nuance: KeyAgreement (ECDH) with a KeyStore key works without biometric confirmation if setUserAuthenticationRequired is not set. For decryption operations (access to the ETH key before signing a transaction), we explicitly require authentication at the moment of use—via setUnlockedDeviceRequired(true) + setUserAuthenticationParameters.

Why StrongBox Beats TEE and Software

Level Isolation Protection from Physical Access Support Example Device
StrongBox Hardware chip Full (key never leaves chip) Limited (API 28+) Pixel 3+, Samsung Galaxy with Knox
TEE Isolated OS on SoC Partial (SoC vulnerabilities) Broad (API 23+) Most mid-range
Software OS only None (DMA, cold boot) All devices Budget models

StrongBox provides protection close to Apple's Secure Enclave and is 10 times better than TEE in resisting physical attacks. For wallets holding real funds, it's the only acceptable option. In one project, we saved a client $15,000 on a security audit by preventing a leak.

Comparison of Algorithm Support in KeyStore

Algorithm StrongBox TEE Software
P-256 Yes Yes Yes
secp256k1 No No Yes (via Bouncy Castle)
RSA 2048 Yes Yes Yes
Details of secp256k1 encryption via P-256

Encrypted blob contains the secp256k1 key, encrypted with AES-GCM using a key derived via ECDH between the P-256 KeyStore key and an ephemeral key. Decryption requires biometric authentication.

What If the Device Doesn't Support StrongBox?

On budget smartphones, StrongBox is often missing. In that case, we use TEE as a fallback, and if that's also absent, software-backed keys with a user warning. It's important to explicitly attempt setIsStrongBoxBacked(false) and check KeyInfo.securityLevel. If the level is below TEE, you can restrict functionality (e.g., prohibit transfers above a threshold). We implemented this approach in a wallet project for a crypto startup—users on old devices could only view balances.

StrongBox is not available in the emulator. We test on Pixel 3+ (StrongBox with API 28), Samsung Galaxy S10+ (Samsung Knox as a separate SE), and on budget devices without StrongBox—ensuring the fallback works correctly. 90% of devices with StrongBox pass durability tests.

What's Included in Our Work and How We Do It

Development Process

  1. Analysis — evaluate target devices, choose minimum API level and security policies.
  2. Design — KeyStore scheme, algorithm selection, fallback handling.
  3. Implementation — key generation code, encryption, biometrics, storage of encrypted blobs.
  4. Testing — on physical devices with varying security levels; emulator is not suitable for StrongBox.
  5. Deployment — integrate into CI/CD, configure code signing, Provisioning Profile for APNs (if push for signing is used).

What We Deliver

  • Architecture design of KeyStore with target security levels.
  • Implementation of key generation with StrongBox requirement and fallback logic.
  • Encryption scheme for secp256k1 via P-256 (ECDH + AES-GCM).
  • Integration of biometric authentication (AUTH_BIOMETRIC_STRONG).
  • Testing on real devices (Pixel, Samsung, budget).
  • Documentation on security levels and error handling.
  • Training for your team on key security practices.
  • Access to the encrypted storage implementation.
  • Support during App Store Review (guidelines 4.2, 5.1).

Timelines and Cost

Development typically takes 3 to 5 days. The cost is determined individually, typically starting from $2,000—contact us for a discussion. Secure your wallet: cost starts from $2,000. Get a consultation from an expert with years of experience. We follow the Android Developer Documentation to ensure compliance with best practices.