Why is creating a wallet with imKey slower than with other wallets?
Creating a new wallet with imKey takes longer than with other wallets, which may seem "slow", but this is a necessary choice made by imKey to prioritize security during key generation.
So why is "slower" safer?
According to the BIP39 specification, the generation of the root key requires 2048 HMAC-SHA512 operations on the entropy (as shown in the figure).

[ BIP39 Specification, see https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki#from-mnemonic-to-seed ]
To maximize the security of the root key, all operations and results should be completed independently within the SE chip during the key generation process, rather than relying on external computation (such as an MCU chip) and then writing the result to the SE chip.
The SE chip is more focused on security, and its computing power is relatively low compared to a general-purpose MCU chip (because each operation of the SE chip must encrypt the data before computation to prevent physical or side-channel attacks; similarly, the SE chip cannot add a coprocessor to accelerate hash computations), so the SE chip may appear to be somewhat slower when generating the wallet root key according to the BIP39 specification.
imKey follows this principle and sets all 2048 hash operations required for root key generation within the SE chip, rather than relying on external computations (such as an MCU chip). The imKey Pro hardware wallet uses the SLE 78CLUFX5000PH secure chip produced by the well-known chip manufacturer Infineon. A single HMAC-SHA512 hash computation using this chip takes about 13-14ms, which is generally imperceptible to users in daily use. However, during wallet creation, because it is necessary to perform 2048 hash computations continuously, the time required is about 20-30s (2048 * 14ms), which may seem "slow" compared to other hot wallets or non-secure chip-based hardware wallets.
imKey always regards "security" as the core value. During wallet creation, it requires users to wait for only about 30 seconds, but it provides a higher level of security for the wallet root key. The imKey team believes that this is a very valuable "trade-off" and a more responsible "choice" for users.