Type alias IdObjectUseData

IdObjectUseData: {
    aci: {
        credentialHolderInformation: {
            idCredSecret: Uint8Array;
        };
        prfKey: Uint8Array;
    };
    randomness: Uint8Array;
}

Can be computed with a seed phrase through the use of createIdentityCommitmentInputWithHdWallet. The seed phrase must be the once used during the identity issuance process with the identity provider.

Type declaration

  • aci: {
        credentialHolderInformation: {
            idCredSecret: Uint8Array;
        };
        prfKey: Uint8Array;
    }

    Account credential information including secrets and keys.

    • credentialHolderInformation: {
          idCredSecret: Uint8Array;
      }

      Information held by the credential holder.

      • idCredSecret: Uint8Array

        The identity credential secret.

    • prfKey: Uint8Array

      The pseudorandom function key.

  • randomness: Uint8Array

    Randomness used for signature blinding.

Generated using TypeDoc