Interface WebTransportCertificate

PEM format server certificate and private key

interface WebTransportCertificate {
    hash: MultihashDigest<number>;
    pem: string;
    privateKey: string;
    secret: string;
}

Properties

hash: MultihashDigest<number>
pem: string
privateKey: string
secret: string