Finish deprecatetion of Bob.join_plolicy (from examples).

pull/2780/head
Kieran R. Prasch 2021-08-19 17:04:27 -07:00
parent 85a62c53d2
commit edd5a5c2f9
2 changed files with 2 additions and 8 deletions

View File

@ -118,9 +118,7 @@ del alice
# Bob the BUIDLer ## # Bob the BUIDLer ##
##################### #####################
bob.join_policy(label, alice_verifying_key) # Now let's show how Enrico the Encryptor
# Now that Bob has joined the Policy, let's show how Enrico the Encryptor
# can share data with the members of this Policy and then how Bob retrieves it. # can share data with the members of this Policy and then how Bob retrieves it.
# In order to avoid re-encrypting the entire book in this demo, we only read some lines. # In order to avoid re-encrypting the entire book in this demo, we only read some lines.
with open(BOOK_PATH, 'rb') as file: with open(BOOK_PATH, 'rb') as file:

View File

@ -88,11 +88,7 @@ policy_pubkey = PublicKey.from_bytes(bytes.fromhex(policy_data["policy_pubkey"])
alices_sig_pubkey = PublicKey.from_bytes(bytes.fromhex(policy_data["alice_sig_pubkey"])) alices_sig_pubkey = PublicKey.from_bytes(bytes.fromhex(policy_data["alice_sig_pubkey"]))
label = policy_data["label"].encode() label = policy_data["label"].encode()
print("The Doctor joins policy for label '{}'".format(label.decode("utf-8"))) # The Doctor can retrieve encrypted data which he can decrypt with his private key.
doctor.join_policy(label, alices_sig_pubkey)
# Now that the Doctor joined the policy in the NuCypher network,
# he can retrieve encrypted data which he can decrypt with his private key.
# But first we need some encrypted data! # But first we need some encrypted data!
# Let's read the file produced by the heart monitor and unpack the MessageKits, # Let's read the file produced by the heart monitor and unpack the MessageKits,
# which are the individual ciphertexts. # which are the individual ciphertexts.