NodeOPCUA API Documentation
    Preparing search index...

    Interface ICertificateKeyPairProviderWithLocation

    Extends ICertificateKeyPairProvider with diagnostic file-location properties so that consumers can report where certificates are stored (real path or "<in-memory>").

    Does not alter the public ICertificateKeyPairProvider interface — zero breaking change to ServerSecureChannelParent, ClientSecureChannelParent, or any external implementation.

    interface ICertificateKeyPairProviderWithLocation {
        certificateFile: string;
        privateKeyFile: string;
        getCertificate(): DER;
        getCertificateChain(): DER[];
        getPrivateKey(): PrivateKey;
        invalidate?(): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    certificateFile: string
    privateKeyFile: string

    Methods