You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 5, 2019. It is now read-only.
Currently, kFrags are very simple objects:
namedtuple('RekeyFrag', ['id', 'key'])But how best to represent this object over the wire?
Currently, we imagine the payload for a policy in NuCypher-KMS as:
msgpack.dumps({b"kf": bytes(self.kfrag), b"cp": msgpack.dumps(self.challenge_pack)})However, we can't easily cast the kFrag to bytes. What's the one obvious way to do this?