pub fn finalize_blinded_datum(
    store_context: &StoreContext,
    datum: &BlindedPseudonymizedData
) -> Result<PseudonymizedData, Error>
Expand description

Finalize a blinded pseudonymous datum for storage or analysis.

Inputs:

  • store_context: The data store’s long term private state including the receiver’s coPRF unblinding key, private decryption key, as well as pseudonym hardening key
  • datum: blinded pseudonymous datum output by convert_blinded_datum or pseudonymize_blinded_datum

Output: Pseudonymized data such that the datum’s pseudonymous handle has been unblinded and hardened and the datum’s value has been decrypted.