SSH-Keys?
- secure way to access remote machines without a password
- based on encryption
NEVER share the private key with anyone!
flowchart LR
subgraph Local Machine
priv@{ shape: rounded, label: "Private Key"}
pub_loc@{ shape: rounded, label: "Public Key"}
end
subgraph Remote Machine
pub_rm@{ shape: rounded, label: "Public Key"}
end
enc@{ shape: rect, label: "Encryption Math"}
pub_loc -.->|upload once| pub_rm
priv -->|login request| enc <-->|compare| pub_rm