Generating an RSA Key Pair
Option 1: Web Interface (Recommended)
Option 2: Command Line (Manual)
Step 1: Check if OpenSSL is installed
openssl versionStep 2: Install OpenSSL (if not installed)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"brew install opensslopenssl versionStep 3: Generate the RSA key pair
openssl genrsa -out rsa_private.pem 2048
openssl rsa -in rsa_private.pem -pubout -out rsa_public.pemStep 4: Copy the public key content
Option 1: Using Git Bash (recommended)
Step 1: Install Git for Windows
Step 2: Open Git Bash
Step 3: Generate the RSA key pair
Step 4: Copy the public key content
Option 2: Using OpenSSL (PowerShell)
Step 1: Install OpenSSL
Step 2: Verify installation
Step 3: Generate the RSA key pair
Step 4: Copy the public key content
Common mistakes
Last updated