Bluestep JS Documentation
    Preparing search index...

    Interface FetchSslContext

    TODO

    interface FetchSslContext {
        keyStore?: FetchKeyStore;
        noCheckCertificate?: boolean;
        protocol?: string;
        trustStore?: FetchTrustStore;
    }
    Index

    Properties

    keyStore?: FetchKeyStore

    Use to specify client certificates

    noCheckCertificate?: boolean

    If true, creates an SSLContext that trusts all certificates, effectively disabling SSL certificate validation. Disabling certificate validation and hostname verification severely reduces the security of your SSL/TLS connection. This code should only be used in trusted environments, such as during development or testing, and should never be used in production systems where security is important. Default is false. If true only noCheckCertificate member is used.

    protocol?: string

    Defaults to 'TLS'

    trustStore?: FetchTrustStore

    Use if you need to verify custom root server certificates