From 745805378c848b64d9faab0e0716291ca12ef7de Mon Sep 17 00:00:00 2001 From: meejah Date: Tue, 25 Jun 2019 16:59:41 -0600 Subject: [PATCH] typo --- src/allmydata/crypto/__init__.py | 2 +- src/allmydata/crypto/rsa.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/allmydata/crypto/__init__.py b/src/allmydata/crypto/__init__.py index 3a602bb9a..ee92f223a 100644 --- a/src/allmydata/crypto/__init__.py +++ b/src/allmydata/crypto/__init__.py @@ -1,5 +1,5 @@ """ -Helper functions for cryptograhpy-related operations inside Tahoe +Helper functions for cryptography-related operations inside Tahoe For the most part, these functions use and return objects that are documented in the `cryptography` library -- however, code inside Tahoe diff --git a/src/allmydata/crypto/rsa.py b/src/allmydata/crypto/rsa.py index 6a21afab8..e1b904e06 100644 --- a/src/allmydata/crypto/rsa.py +++ b/src/allmydata/crypto/rsa.py @@ -1,5 +1,5 @@ """ -Helper functions for cryptograhpy-related operations inside Tahoe +Helper functions for cryptography-related operations inside Tahoe using RSA public-key encryption and decryption. In cases where these functions happen to use and return objects that