I've been working on building OpenSSL 0.9.8i on QNX 4.25, and so far it's
gone well.
I made a few changes to the config and Configure scripts, and the build ran
up to the following error:
making all in crypto/x509...
make-3.81[2]: Entering directory
`/home/cjohnson/build/openssl-build/crypto/x509'
All -
I'm a little confused with the following example while working with
BIO's.
I'm trying base 64 encode a buffer using BIO_f_base64 with the
following example.
char *message = "Hello World";
b64 = BIO_new( BIO_f_base64( ) );
bio = BIO_new_fp( stdout, BIO_NOCLOSE );
bi