Which mechanism does ASP.NET Core Identity primarily use to facilitate two-factor authentication?
- SMS Authentication Codes
- Email Authentication Codes
- TOTP (Time-Based One-Time Passwords)
- Biometric Authentication
ASP.NET Core Identity primarily uses TOTP (Time-Based One-Time Passwords) for facilitating two-factor authentication. TOTP generates short-lived authentication codes that are valid for a short period, adding an extra layer of security beyond just passwords.
Loading...
Related Quiz
- While working on an ASP.NET Core project, you notice that all Razor views seem to have access to the same set of using directives and shared code. Which file is likely responsible for this behavior?
- If an action within a controller with [Authorize] should be accessible without authorization, you can use the [_________] attribute.
- When securing your ASP.NET Core Web APIs, which authentication approach uses a compact, URL-safe means of representing claims to be transferred between two parties?
- The @ViewData object is a type of _________, allowing you to pass data from the controller to the view.
- In an e-commerce application, you have a controller that manages orders, and it is protected using the [Authorize] attribute. However, you wish to allow a public tracking feature where users can see the status of their order without logging in. How would you implement this?