Sample code for 30+ languages & platforms
Unicode C

Verify and Pin the FTPS Server Certificate

See more FTP Examples

Demonstrates the certificate-verification properties RequireSslCertVerify, TlsPinSet, and the read-only SslServerCertVerified.

Background: By default a TLS connection is not rejected merely because certificate-chain verification fails, so RequireSslCertVerify = true is the important hardening step — it makes an expired, unsigned, or untrusted certificate abort the connection. TlsPinSet adds public-key pinning on top: the handshake fails unless the server's SPKI fingerprint matches one you configured, defending against a mis-issued certificate that would otherwise validate. Pinning supplements verification rather than replacing it. SslServerCertVerified reports the outcome.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkFtp2W.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkFtp2W ftp;

    success = FALSE;

    ftp = CkFtp2W_Create();

    CkFtp2W_putHostname(ftp,L"ftp.example.com");
    CkFtp2W_putUsername(ftp,L"myFtpLogin");

    CkFtp2W_putAuthTls(ftp,TRUE);

    //  Normally you would not hard-code the password in source.  You should instead obtain it
    //  from an interactive prompt, environment variable, or a secrets vault.
    CkFtp2W_putPassword(ftp,L"myPassword");

    //  Reject the connection if the server certificate cannot be verified (expired, bad signature,
    //  untrusted chain, etc.).  The default is FALSE, which does not reject on verification
    //  failure -- set TRUE for security.
    CkFtp2W_putRequireSslCertVerify(ftp,TRUE);

    //  Optionally pin the server's public key.  If none of the configured SPKI fingerprints matches,
    //  the TLS handshake fails.  Pinning supplements normal verification; it does not replace it.
    CkFtp2W_putTlsPinSet(ftp,L"sha256//YLh1dUR9y6Kja30RrAn7JKnbQG/uEtLMkBgFF2Fuihg=");

    success = CkFtp2W_Connect(ftp);
    if (success == FALSE) {
        wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp));
        CkFtp2W_Dispose(ftp);
        return;
    }

    //  SslServerCertVerified reports whether the certificate chain was successfully verified.
    if (CkFtp2W_getSslServerCertVerified(ftp)) {
        wprintf(L"The server certificate was verified.\n");
    }

    success = CkFtp2W_Disconnect(ftp);
    if (success == FALSE) {
        wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp));
        CkFtp2W_Dispose(ftp);
        return;
    }



    CkFtp2W_Dispose(ftp);

    }