KeyGenParameterSpec.IsUserConfirmationRequired Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns true
if the key is authorized to be used only for messages confirmed by the
user.
public bool IsUserConfirmationRequired { [Android.Runtime.Register("isUserConfirmationRequired", "()Z", "", ApiSince=28)] get; }
[<get: Android.Runtime.Register("isUserConfirmationRequired", "()Z", "", ApiSince=28)>]
member this.IsUserConfirmationRequired : bool
Property Value
- Attributes
Remarks
Returns true
if the key is authorized to be used only for messages confirmed by the user.
Confirmation is separate from user authentication (see Builder#setUserAuthenticationRequired(boolean)
). Keys can be created that require confirmation but not user authentication, or user authentication but not confirmation, or both. Confirmation verifies that some user with physical possession of the device has approved a displayed message. User authentication verifies that the correct user is present and has authenticated.
This authorization applies only to secret key and private key operations. Public key operations are not restricted.
Java documentation for android.security.keystore.KeyGenParameterSpec.isUserConfirmationRequired()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.