sadly i'm running 1.8 because I've made serious modifications to get cyassl embedded SSL running in a non-standard environment. I want to get 1.8 ported and running, then update to 2.0. Mainly because of those pesky deadlines
Can you describe what the error is intended to mean? Looking at 2.0 source it gives a little more clarrification from this line of code
CYASSL_MSG("No CA signer to verify with");
I am running cyassl as a client. Maybe I missed a step of loading a CA. My code is loading one cert as the CA cert during the CyaSSL_CTX_load_verify_buffer(). Is it possible my CA PEM is incomplete?
My CA loading code:
CyaSSL_CTX_load_verify_buffer(ctx, caCertBuffer, caCertBufferSize, SSL_FILETYPE_PEM)
Maybe I am fundamentally doing something wrong. Any insight?