Reputation: 51
Is Google Two Factor Authentication a free application that we can integrate with our asp.net MVC project?
Are there any restrictions or limitations, If we use it without purchasing?
(ex-: number of users that can use it Or number of times that can use it)
Please help I need to add this functionality to a login system.
Upvotes: 0
Views: 411
Reputation: 3777
Google Authenticator is an implementation of the Time-based One-Time-Password algorithm, which anyone can implement. It's not specific to Google. In asp.net, it can be implemented using the asp.net core identity services.
Upvotes: 1