diff --git a/common/auth/keys/lib.py b/common/auth/keys/lib.py index a094b8a..c4b8dac 100644 --- a/common/auth/keys/lib.py +++ b/common/auth/keys/lib.py @@ -94,7 +94,7 @@ def extract_key(value: str) -> AuthenticationKeyParts: Given an authenticaton key, extract the key id and passphrase. An authentication key is always 2 components of identical length. A UUID representing the primary key for the API - key, and the actual passphrase which is also a UUID. + key, and the actual passphrase which is a string of random characters. """ key_bytes: bytes = b64decode(value) key_text = key_bytes.decode("utf-8")