MFC Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

MFC Examples

Bounced Mail
Bz2
Certificates/Keys
Charset
CSV
Diffie-Hellman
DKIM / DomainKey
DSA
Email Object
Encryption
FileAccess
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
MIME
NTLM
POP3
RSA
SMTP
Socket
Spider
SSH Key
SSH
SSH Tunnel
SFTP
Tar
Upload
XML
Zip
Amazon S3


 

 

 

 

 

 

 

 

Duplicate openssl dgst -md5 -sign myKey.pem something.txt | openssl enc -base64 -A

Demonstrates how to duplicate the creation of an RSA signature produced by this OpenSSL command:

openssl dgst -md5 -sign myKey.pem something.txt | openssl enc -base64 -A

Downloads:

MS Windows Visual C/C++ Libraries
Linux/CentOS C/C++ Libraries
MAC OS X C/C++ Libraries
Solaris C/C++ Libraries
C++ Builder Libraries
// Needs #include <CkPrivateKey.h>
// Needs #include <CkRsa.h>

    CkString strOut;

    CkPrivateKey pkey;

    //  Load the private key from an RSA PEM file:
    pkey.LoadPemFile("myKey.pem");

    bool success;

    const char * pkeyXml;

    //  Get the private key in XML format:
    pkeyXml = pkey.getXml();

    CkRsa rsa;

    //  Any string argument automatically begins the 30-day trial.

    success = rsa.UnlockComponent("30-day trial");
    if (success != true) {
        strOut.append(rsa.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    //  Import the private key into the RSA component:
    success = rsa.ImportPrivateKey(pkeyXml);
    if (success != true) {
        strOut.append(rsa.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    //  OpenSSL uses BigEndian byte ordering:
    rsa.put_LittleEndian(false);

    //  The resulting signature will be a Base64 string:
    rsa.put_EncodingMode("base64");

    //  For simplicity, we're not loading
    //  the data to be signed from a file.  We are instead simply
    //  using a literal string value.
    const char * strData;
    strData = "This is the text to be signed.";

    //  Hash the input using MD5, and then sign the hash:
    //  Other valid hash algorithm choices are "md2" and "sha-1".
    const char * base64Sig;
    base64Sig = rsa.signStringENC(strData,"md5");

    strOut.append(base64Sig);
    strOut.append("\r\n");

    strOut.append("Success!\r\n");


    SetDlgItemText(IDC_EDIT1,strOut.getUnicode());

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2010 Chilkat Software, Inc. All Rights Reserved.