**Unit 2 Project Walk-Through**
By: Wilson Zhu
Note: This walk-through will only cover parts 1,3,4.
**Part 1**
RUn the command `ssh-keygen -t rsa -b 4096 -C "CYB101 Ubuntu Key"`

Private key:

Note: Private Key is not shown
Public Key:

Note: Rest of Key is not shown
**Part 3**
Using `openssl` to encrypt a message and decrypt a message.
Start of with using the following commands:
```
openssl genrsa -out ~/.ssh/privatekey.pem 2048
openssl rsa -in ~/.ssh/privatekey.pem -out ~/.ssh/publickey.pem -pubout -outform PEM
```

**Part 4**
Install Git using the following command: `sudo apt-get install git -y`

Public Key:

Note: Rest of key is not shown

Note: Rest of key is not shown

**Part 4 trouble shooting**
If you run into the following error in part 4:

Update git using the following commands one at a time:
```
sudo add-apt-repository ppa:git-core/ppa
```
```
sudo apt-get update
```
```
sudo apt-get install git
```
Following these commands, restart the `ssh-add` process.