# 创建 ssh rsa

在命令行中键入

```
ssh-keygen -t rsa -C "your_email@example.com"
```

代码参数含义：

-t 指定密钥类型，默认是 rsa ，可以省略。\
-C 设置注释文字，比如邮箱。
