allowStrongBox abstract method

OutOfBandRegistration allowStrongBox(
  1. bool allowStrongBox
)

Specifies whether the SDK should try to store the FIDO UAF keys in StrongBox.

IMPORTANT
This method is Android specific and will be ignored on iOS platform.

We recommend to use StrongBox, but we have seen incompatibility with some devices during registration. So, if you want to maximize the number of devices that are compatible with your application, you may consider opting out of using StrongBox by providing false to this method. See here for details.

Note also that with some devices creating a key in StrongBox can take more than 10 seconds, so registration is usually slower when StrongBox is used.

If not specified, the SDK will try to store FIDO UAF credentials in StrongBox if available.

Params:

  • allowStrongBox: specifies whether the SDK should try to store the FIDO UAF keys in StrongBox.

Returns: an OutOfBandRegistration object.

Implementation

OutOfBandRegistration allowStrongBox(bool allowStrongBox);