1 min read
Two factor authentication (2FA) strengthens access security by requiring two methods (also referred to as factors) to verify your identity. Two factor authentication protects against phishing, social engineering and password brute force attacks and secures your logins from attackers exploiting weak or stolen credentials.
In this tutorial, we are going to learn how to add two factor authentication to our Laravel application. We’ll be using Google Authenticator and implementing the Time-based One-time Password (TOTP) algorithm specified in RFC 6238.
Read more: How to Add Google’s Two Factor Authentication to Laravel
It is very tricky to model an authentication flow that enables a users authenticate to almost any service. In the article, I'll walk you through the process I went through, several versions I tried, and my current solution.
17 min read
In this post, we'll see how to write workers in Go, how to gracefully shut them down. We'll also look at how to coordinate multiple workers.
8 min read
Comments