From eb92e1cb6050eb3278a490c7f4cae67ab85afffa Mon Sep 17 00:00:00 2001 From: orthographic-pedant Date: Tue, 29 Sep 2015 00:56:17 -0400 Subject: [PATCH] Fixed typographical error, changed auxilliary to auxiliary in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4740a03..30d3f18 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ Before sending login/sign up information to the server I am recursively SHA-256 ## OCSession -OCSession.{h,m} is a singleton object that holds all Onion data and your plaintext password (hence the stretching of credentials) that is used to generate your AES keys and HMAC keys for encryption/decryption. The OCSession object lives at login and dies at logout. Because of the sensitive nature of the app and your data, any time the app goes to the background all of your Onion data is cleared out of memory. Nothing is ever saved on disk, and your password is **never** sent in the clear through an internet connection. Parse uses an SSL connection as it is to encrypt communications going to/from the server, but there's not point in assuming that's totally secure. All of OCSession's properties and their getters/setters/auxilliary functions have been abstracted to class-level methods that work on the OCSession mainSession instance. +OCSession.{h,m} is a singleton object that holds all Onion data and your plaintext password (hence the stretching of credentials) that is used to generate your AES keys and HMAC keys for encryption/decryption. The OCSession object lives at login and dies at logout. Because of the sensitive nature of the app and your data, any time the app goes to the background all of your Onion data is cleared out of memory. Nothing is ever saved on disk, and your password is **never** sent in the clear through an internet connection. Parse uses an SSL connection as it is to encrypt communications going to/from the server, but there's not point in assuming that's totally secure. All of OCSession's properties and their getters/setters/auxiliary functions have been abstracted to class-level methods that work on the OCSession mainSession instance. ## Logging In / Signing Up