SongGuess
    Preparing search index...

    Type Alias CertVerificationStatus

    CertVerificationStatus:
        | "SUCCESS"
        | "NONE"
        | "FAILED:self signed certificate"
        | "FAILED:unable to verify the first certificate"
        | "FAILED:certificate is not yet valid"
        | "FAILED:certificate has expired"
        | "FAILED"

    Possible outcomes of TLS verification

    Type Declaration

    • "SUCCESS"

      Authentication succeeded

    • "NONE"

      No certificate was presented

    • "FAILED:self signed certificate"

      Failed because the certificate was self-signed

    • "FAILED:unable to verify the first certificate"

      Failed because the certificate failed a trust chain check

    • "FAILED:certificate is not yet valid"

      Failed because the certificate not yet valid

    • "FAILED:certificate has expired"

      Failed because the certificate is expired

    • "FAILED"

      Failed for another unspecified reason