wolfssl-sys 4.0.0

System bindings for WolfSSL
Documentation
1
2
3
4
5
6
7
8
9
10
11
#include <wolfssl/options.h>
#include <wolfssl/ssl.h>

int main(void)
{
    if (wolfSSL_Init() != WOLFSSL_SUCCESS) {
        return 1;
    }
    wolfSSL_Cleanup();
    return 0;
}