2022-06-27 20:56:13 +02:00
|
|
|
import base64
|
|
|
|
import hashlib
|
|
|
|
import typing
|
|
|
|
from datetime import datetime
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
import pyld # type: ignore
|
2022-06-27 20:56:13 +02:00
|
|
|
from Crypto.Hash import SHA256
|
|
|
|
from Crypto.Signature import PKCS1_v1_5
|
|
|
|
from pyld import jsonld # type: ignore
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
from app import activitypub as ap
|
|
|
|
|
2022-06-27 20:56:13 +02:00
|
|
|
if typing.TYPE_CHECKING:
|
|
|
|
from app.key import Key
|
|
|
|
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
requests_loader = pyld.documentloader.requests.requests_document_loader()
|
2022-06-27 20:56:13 +02:00
|
|
|
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
def _loader(url, options={}):
|
|
|
|
# See https://github.com/digitalbazaar/pyld/issues/133
|
|
|
|
options["headers"]["Accept"] = "application/ld+json"
|
|
|
|
return requests_loader(url, options)
|
2022-06-27 20:56:13 +02:00
|
|
|
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
pyld.jsonld.set_document_loader(_loader)
|
2022-06-27 20:56:13 +02:00
|
|
|
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
def _options_hash(doc: ap.RawObject) -> str:
|
2022-06-27 20:56:13 +02:00
|
|
|
doc = dict(doc["signature"])
|
|
|
|
for k in ["type", "id", "signatureValue"]:
|
|
|
|
if k in doc:
|
|
|
|
del doc[k]
|
|
|
|
doc["@context"] = "https://w3id.org/identity/v1"
|
|
|
|
normalized = jsonld.normalize(
|
|
|
|
doc, {"algorithm": "URDNA2015", "format": "application/nquads"}
|
|
|
|
)
|
|
|
|
h = hashlib.new("sha256")
|
|
|
|
h.update(normalized.encode("utf-8"))
|
|
|
|
return h.hexdigest()
|
|
|
|
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
def _doc_hash(doc: ap.RawObject) -> str:
|
2022-06-27 20:56:13 +02:00
|
|
|
doc = dict(doc)
|
|
|
|
if "signature" in doc:
|
|
|
|
del doc["signature"]
|
|
|
|
normalized = jsonld.normalize(
|
|
|
|
doc, {"algorithm": "URDNA2015", "format": "application/nquads"}
|
|
|
|
)
|
|
|
|
h = hashlib.new("sha256")
|
|
|
|
h.update(normalized.encode("utf-8"))
|
|
|
|
return h.hexdigest()
|
|
|
|
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
def verify_signature(doc: ap.RawObject, key: "Key") -> bool:
|
2022-06-27 20:56:13 +02:00
|
|
|
to_be_signed = _options_hash(doc) + _doc_hash(doc)
|
|
|
|
signature = doc["signature"]["signatureValue"]
|
|
|
|
signer = PKCS1_v1_5.new(key.pubkey or key.privkey) # type: ignore
|
|
|
|
digest = SHA256.new()
|
|
|
|
digest.update(to_be_signed.encode("utf-8"))
|
|
|
|
return signer.verify(digest, base64.b64decode(signature)) # type: ignore
|
|
|
|
|
|
|
|
|
2022-06-28 09:58:33 +02:00
|
|
|
def generate_signature(doc: ap.RawObject, key: "Key") -> None:
|
2022-06-27 20:56:13 +02:00
|
|
|
options = {
|
|
|
|
"type": "RsaSignature2017",
|
|
|
|
"creator": doc["actor"] + "#main-key",
|
|
|
|
"created": datetime.utcnow().replace(microsecond=0).isoformat() + "Z",
|
|
|
|
}
|
|
|
|
doc["signature"] = options
|
|
|
|
to_be_signed = _options_hash(doc) + _doc_hash(doc)
|
|
|
|
if not key.privkey:
|
|
|
|
raise ValueError(f"missing privkey on key {key!r}")
|
|
|
|
|
|
|
|
signer = PKCS1_v1_5.new(key.privkey)
|
|
|
|
digest = SHA256.new()
|
|
|
|
digest.update(to_be_signed.encode("utf-8"))
|
|
|
|
sig = base64.b64encode(signer.sign(digest)) # type: ignore
|
|
|
|
options["signatureValue"] = sig.decode("utf-8")
|