damon c
damon c
Also, be sure to comment this line: https://github.com/pathak22/pyflow/blob/master/src/project.h#L9
It’s broadly done to Alice Bob and Enrico. I guess that means it’s not done?
It really makes a lot of sense to do it to Ursula’s http endpoints as well
One reason to keep this structured similarly as before would be if we want to shut down the node in the event that it becomes unbonded, like if the stake...
Ah, ok great I wasn't sure about that one.
Related situation encountered recently. Bob retrieve will fail on a newly inited Bob, or when retrieving from nodes he has not yet learned about. So, whatever the specifics, Bob has...
@fjarri I'm not sure I understand what needs to be done here. This struct as is provides a decent interface through JS like `let { ciphertext, capsule } = umbral.encrypt(alice_pk,...
I guess the plan for this one is to call one of plain `verify`, `verifyWithDelegatingKey`, `verifyWithReceivingKey`, or `verifyWithDelegatingAndReceivingKeys` based on the arguments?
*The python version of this https://github.com/nucypher/pyUmbral/blob/18e868ceb2030a2db0ad89dcfeb9d47247cead6b/umbral/key_frag.py#L214 ``` def verify(self, verifying_pk: PublicKey, delegating_pk: Optional[PublicKey] = None, receiving_pk: Optional[PublicKey] = None, ) -> 'VerifiedKeyFrag':` ``` Has these optional kwargs... I think the...
Well the main difference with that would be that the arguments need to be positional in that case. It is fairly normal to take an object as “**kwargs”. It will...