pyssb/ssb/util.py

40 lines
980 B
Python
Raw Permalink Normal View History

"""Utility functions"""
2017-08-05 16:21:14 +00:00
from base64 import b64decode, b64encode
import os
from typing import TypedDict
2017-05-25 10:47:01 +00:00
from nacl.signing import SigningKey, VerifyKey
import yaml
2017-05-25 10:47:01 +00:00
class SSBSecret(TypedDict):
"""Dictionary type to hold an SSB secret identity"""
keypair: SigningKey
id: str
2017-08-05 10:24:46 +00:00
class ConfigException(Exception):
"""Exception to raise if there is a problem with the configuration data"""
2017-05-25 10:47:01 +00:00
def tag(key: VerifyKey) -> bytes:
"""Create tag from public key."""
return b"@" + b64encode(bytes(key)) + b".ed25519"
2017-08-05 16:21:14 +00:00
def load_ssb_secret() -> SSBSecret:
2017-08-05 10:24:46 +00:00
"""Load SSB keys from ~/.ssb"""
with open(os.path.expanduser("~/.ssb/secret"), encoding="utf-8") as f:
config = yaml.load(f, Loader=yaml.SafeLoader)
2017-05-25 10:47:01 +00:00
if config["curve"] != "ed25519":
raise ConfigException("Algorithm not known: " + config["curve"])
2017-05-25 10:47:01 +00:00
server_prv_key = b64decode(config["private"][:-8])
return {"keypair": SigningKey(server_prv_key[:32]), "id": config["id"]}