summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2012-12-18 18:57:01 -0200
committerdrebs <drebs@leap.se>2012-12-18 18:57:01 -0200
commit0799298acb902a7509f889bc01b22f610f8b0207 (patch)
tree64bce04e6669eeee0de0b052d425d5ff39e45b4a
parent451432b6d9630f118364a58aab4a553c0e0c453e (diff)
Correct typ0
-rw-r--r--__init__.py4
-rw-r--r--backends/leap.py8
2 files changed, 6 insertions, 6 deletions
diff --git a/__init__.py b/__init__.py
index 835111a5..4325d773 100644
--- a/__init__.py
+++ b/__init__.py
@@ -45,9 +45,9 @@ class Soledad(object):
def _gen_secret(self):
self._secret = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(self.SECRET_LENGTH))
- cyphertext = self._gpg.encrypt(self._secret, self._fingerprint, self._fingerprint)
+ ciphertext = self._gpg.encrypt(self._secret, self._fingerprint, self._fingerprint)
f = open(self.SECRET_PATH, 'w')
- f.write(str(cyphertext))
+ f.write(str(ciphertext))
f.close()
diff --git a/backends/leap.py b/backends/leap.py
index 4a496d3e..c019ed3f 100644
--- a/backends/leap.py
+++ b/backends/leap.py
@@ -37,8 +37,8 @@ class LeapDocument(Document):
"""
if not self._soledad:
raise NoSoledadInstance()
- cyphertext = self._soledad.encrypt_symmetric(self.get_json())
- return json.dumps({'_encrypted_json' : cyphertext})
+ ciphertext = self._soledad.encrypt_symmetric(self.get_json())
+ return json.dumps({'_encrypted_json' : ciphertext})
def set_encrypted_json(self, encrypted_json):
"""
@@ -46,8 +46,8 @@ class LeapDocument(Document):
"""
if not self._soledad:
raise NoSoledadInstance()
- cyphertext = json.loads(encrypted_json)['_encrypted_json']
- plaintext = self._soledad.decrypt_symmetric(cyphertext)
+ ciphertext = json.loads(encrypted_json)['_encrypted_json']
+ plaintext = self._soledad.decrypt_symmetric(ciphertext)
return self.set_json(plaintext)