Interface UserCOSESign1AuthnIdentity

interface UserCOSESign1AuthnIdentity {
    cert: string;
    cose: { content: ArrayBuffer };
    data: any;
    id: string;
    policy: "user_cose_sign1";
}

Hierarchy

  • UserMemberAuthnIdentityCommon
  • UserMemberCOSEAuthIdentityCommon
    • UserCOSESign1AuthnIdentity

Properties

Properties

cert: string

PEM-encoded certificate.

cose: { content: ArrayBuffer }

Type declaration

  • content: ArrayBuffer

    COSE content

data: any

User/member data object.

id: string

User/member ID.

policy: "user_cose_sign1"

A string indicating which policy accepted this request, for use when multiple policies are listed in the endpoint configuration of app.json, or list-of-strings to identify an all_of policy.