mushi
    Preparing search index...

    Class EndpointKey

    Index

    Constructors

    • Load a private key from a PEM-encoded PKCS#8 private key string.

      If the key is not ED25519 or ECDSA(256|384), this will error.

      Parameters

      • privateKeyPem: string

      Returns EndpointKey

    Accessors

    • get validity(): number

      The validity of certificates generated by this key in seconds.

      Returns number

    • set validity(seconds: number): void

      Set the validity of certificates generated by this key in seconds.

      Note that changing the validity of a key once it's used in an Endpoint does nothing.

      Parameters

      • seconds: number

      Returns void

    Methods

    • Generate a certificate for this key.

      This is primarily used internally, but exposed for convenience if you're implementing the transport yourself and don't want to bother making certificates correctly.

      Returns the PEM-encoded certificate.

      Returns string

    • Serialize private key to PEM.

      Returns string

    • Serialize public key to PEM.

      Returns string

    • Generate a new random key pair in the given scheme.

      The argument must be one of ed25519, ecdsa256, ecdsa384.

      Parameters

      • scheme: string

      Returns EndpointKey