@wireapp/core-crypto
    Preparing search index...

    Type Alias X509Identity

    Represents the parts of [WireIdentity][crate::WireIdentity] that are specific to a X509 certificate (and not a Basic one).

    We don't use an enum here since the sole purpose of this is to be exposed through the FFI (and union types are impossible to carry over the FFI boundary)

    type X509Identity = {
        certificate: string;
        displayName: string;
        domain: string;
        handle: string;
        notAfter: UniffiTimestamp;
        notBefore: UniffiTimestamp;
        serialNumber: string;
    }
    Index

    Properties

    certificate: string

    X509 certificate identifying this client in the MLS group ; PEM encoded

    displayName: string

    Name as displayed in the messaging application e.g. John Fitzgerald Kennedy

    domain: string

    DNS domain for which this identity proof was generated e.g. whitehouse.gov

    handle: string

    user handle e.g. john_wire

    notAfter: UniffiTimestamp

    X509 certificate not after

    notBefore: UniffiTimestamp

    X509 certificate not before

    serialNumber: string

    X509 certificate serial number