From e52b729406a73147020bc7e2b029154c8eb85d4f Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Sun, 23 Feb 2020 12:09:45 +0100 Subject: [PATCH] [mod] auth: Rephase comments --- silkaj/auth.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/silkaj/auth.py b/silkaj/auth.py index 34531d33..befedf54 100644 --- a/silkaj/auth.py +++ b/silkaj/auth.py @@ -61,10 +61,10 @@ def generate_auth_file(file): @pass_context def auth_by_auth_file(ctx): """ - Uses an auth file to generate key. - Authfile can be either: - * Seed in hexadecimal encoding - * PubSec format with public and private key in base58 encoding. + Uses an authentication file to generate the key + Authfile can either be: + * A seed in hexadecimal encoding + * PubSec format with public and private key in base58 encoding """ file = ctx.obj["AUTH_FILE_PATH"] authfile = Path(file) @@ -73,11 +73,11 @@ def auth_by_auth_file(ctx): filetxt = authfile.open("r").read() # regex for seed (hexadecimal) regex_seed = compile("^[0-9a-fA-F]{64}$") - # two RE for PubSec format + # two regural expressions for the PubSec format regex_pubkey = compile("pub: ([1-9A-HJ-NP-Za-km-z]{43,44})", MULTILINE) regex_signkey = compile("sec: ([1-9A-HJ-NP-Za-km-z]{87,90})", MULTILINE) - # Seed Format + # Seed format if search(regex_seed, filetxt): return SigningKey.from_seedhex_file(file) # PubSec format -- GitLab