Solved 20 views

What is the difference between a secure SSH key connection and a standard password login?

When connecting to a remote shared hosting server via terminal, why do senior web developers enforce public-private key pairs over long text passwords?

C
CodeCrafter
asked 1mo ago · 10 rep

1 Answer(s)

0

Passwords can be cracked via brute-force dictionary attacks over open ports. An SSH key uses asymmetric public-private cryptography, which is mathematically impossible to decrypt without the physical private file.

S
SysAdminPro answered 1mo ago

Your Answer