diff --git a/README.md b/README.md index e228b03..9ab8dd8 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ You want to write it on paper, but everyone can read that. PassED solves these issues by allowing you to generate single-use URLs that contain your password. ## How it works -When you create a password URL, PassED firstly encrypts the password in your browser using `AES-GCM`. It then uploads the encrypted password to the server, which responds with an ID that uniquely identifies that password. The AES Key and IV is then stored in the URL, along with the ID. +When you create a password URL, PassED firstly encrypts the password in your browser using `AES-GCM`. It then uploads the encrypted password to the server, which responds with an ID that uniquely identifies that password. The AES Key and IV (Initialization vector) is then stored in the URL, along with the ID. When someone views the password, PassED looks at the URL. It knows the password ID, AES Key and IV. It reaches out to the server, asks for a password with the ID from the URL, and then decrypts it with the AES Key and IV.