using System; using System.Runtime.InteropServices; using System.Text; using System.Threading; using System.IO; using System.Net; using System.Net.Sockets; namespace wolfSSL.CSharp { public class wolfssl { private const string wolfssl_dll = "wolfssl.dll"; /******************************** * Class for DTLS connections */ public class DTLS_con { public UdpClient udp; public IPEndPoint ep; } /******************************** * Init wolfSSL library */ [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_Init(); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_Cleanup(); /******************************** * Methods of connection */ [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfTLSv1_2_server_method(); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSLv23_server_method(); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfTLSv1_2_client_method(); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSLv23_client_method(); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfDTLSv1_2_server_method(); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfDTLSv1_2_client_method(); /******************************** * Call backs */ [UnmanagedFunctionPointer(CallingConvention.Cdecl)] public delegate int CallbackIORecv_delegate(IntPtr ssl, IntPtr buf, int sz, IntPtr ctx); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_SetIORecv(IntPtr ctx, CallbackIORecv_delegate recv); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_SetIOReadCtx(IntPtr ssl, IntPtr rctx); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_GetIOReadCtx(IntPtr ssl); [UnmanagedFunctionPointer(CallingConvention.Cdecl)] public delegate int CallbackIOSend_delegate(IntPtr ssl, IntPtr buf, int sz, IntPtr ctx); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_SetIOSend(IntPtr ctx, CallbackIOSend_delegate send); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_SetIOWriteCtx(IntPtr ssl, IntPtr wctx); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_GetIOWriteCtx(IntPtr ssl); /******************************** * CTX structure */ [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_CTX_new(IntPtr method); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_CTX_use_certificate_file(IntPtr ctx, string file, int type); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_CTX_use_PrivateKey_file(IntPtr ctx, string file, int type); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static void wolfSSL_CTX_free(IntPtr ctx); /******************************** * PSK */ [UnmanagedFunctionPointer(CallingConvention.Cdecl)] public delegate uint psk_delegate(IntPtr ssl, string identity, IntPtr key, uint max_sz); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static void wolfSSL_set_psk_server_callback(IntPtr ssl, psk_delegate psk_cb); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static void wolfSSL_CTX_set_psk_server_callback(IntPtr ctx, psk_delegate psk_cb); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_CTX_use_psk_identity_hint(IntPtr ctx, StringBuilder identity); /******************************** * SSL Structure */ [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_new(IntPtr ctx); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_accept(IntPtr ssl); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_connect(IntPtr ssl); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_read(IntPtr ssl, StringBuilder buf, int sz); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_write(IntPtr ssl, StringBuilder buf, int sz); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_shutdown(IntPtr ssl); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static void wolfSSL_free(IntPtr ssl); /******************************** * Cipher lists */ /* only supports full name from cipher_name[] delimited by : */ [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_CTX_set_cipher_list(IntPtr ctx, StringBuilder ciphers); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_set_cipher_list(IntPtr ssl, StringBuilder ciphers); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_get_ciphers(StringBuilder ciphers, int sz); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_get_cipher(IntPtr ssl); [DllImport(wolfssl_dll, CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_CIPHER_get_name(IntPtr cipher); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_get_current_cipher(IntPtr ssl); [DllImport(wolfssl_dll, CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_get_version(IntPtr ssl); [DllImport(wolfssl_dll, CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_get_cipher_list(IntPtr ssl); /******************************** * Error logging */ [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr wolfSSL_ERR_error_string(int err, StringBuilder errOut); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_get_error(IntPtr ssl, int err); [UnmanagedFunctionPointer(CallingConvention.Cdecl)] public delegate void loggingCb(int lvl, StringBuilder msg); private static loggingCb internal_log; /******************************** * DH */ [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_CTX_SetMinDhKey_Sz(IntPtr ctx, short size); [DllImport(wolfssl_dll, CallingConvention = CallingConvention.Cdecl)] public extern static int wolfSSL_SetTmpDH_file(IntPtr ssl, StringBuilder dhParam, int type); /******************************** * Enum types from wolfSSL library */ public static readonly int SSL_FILETYPE_PEM = 1; public static readonly int SSL_FILETYPE_ASN1= 2; public static readonly int SSL_FILETYPE_RAW = 3; public static readonly int CBIO_ERR_GENERAL = -1; public static readonly int CBIO_ERR_WANT_READ = -2; public static readonly int CBIO_ERR_WANT_WRITE = -2; public static readonly int CBIO_ERR_CONN_RST = -3; public static readonly int CBIO_ERR_ISR = -4; public static readonly int CBIO_ERR_CONN_CLOSE = -5; public static readonly int CBIO_ERR_TIMEOUT = -6; public static readonly int ERROR_LOG = 0; public static readonly int INFO_LOG = 1; public static readonly int ENTER_LOG = 2; public static readonly int LEAVE_LOG = 3; public static readonly int OTHER_LOG = 4; public static readonly int SUCCESS = 1; public static readonly int FAILURE = 0; /// /// Call back to allow recieving TLS information /// /// structure of ssl passed in /// buffer to contain recieved msg /// size of buffer /// optional information passed in /// size of message recieved private static int wolfSSLCbIORecv(IntPtr ssl, IntPtr buf, int sz, IntPtr ctx) { if (sz <= 0) { log(ERROR_LOG, "wolfssl recieve error, size less than 0"); return wolfssl.CBIO_ERR_GENERAL; } int amtRecv = 0; System.Runtime.InteropServices.GCHandle gch; gch = GCHandle.FromIntPtr(ctx); Socket con = (System.Net.Sockets.Socket)gch.Target; try { Byte[] msg = new Byte[sz]; amtRecv = con.Receive(msg, msg.Length, 0); Marshal.Copy(msg, 0, buf, sz); } catch (Exception e) { log(1, "Error in recive " + e.ToString()); return wolfssl.CBIO_ERR_CONN_CLOSE; } return amtRecv; } /// /// Call back used for sending TLS information /// /// pointer to ssl struct /// buffer containing information to send /// size of buffer to send /// optional information /// amount of information sent private static int wolfSSLCbIOSend(IntPtr ssl, IntPtr buf, int sz, IntPtr ctx) { if (sz <= 0) { log(ERROR_LOG, "wolfssl send error, size less than 0"); return wolfssl.CBIO_ERR_GENERAL; } System.Runtime.InteropServices.GCHandle gch; gch = GCHandle.FromIntPtr(ctx); Socket con = (System.Net.Sockets.Socket)gch.Target; Byte[] msg = new Byte[sz]; Marshal.Copy(buf, msg, 0, sz); try { con.Send(msg, 0, msg.Length, SocketFlags.None); return sz; } catch (Exception e) { log(ERROR_LOG, "socket connection issue "+ e.ToString()); return wolfssl.CBIO_ERR_CONN_CLOSE; } } /// /// Call back used for sending DTLS information /// /// pointer to ssl struct /// buffer containing information to send /// size of buffer to send /// optional information /// amount of information sent private static int wolfSSL_dtlsCbIOSend(IntPtr ssl, IntPtr buf, int sz, IntPtr ctx) { if (sz <= 0) { log(ERROR_LOG, "wolfssl dtls send error, size less than 0"); return wolfssl.CBIO_ERR_GENERAL; } System.Runtime.InteropServices.GCHandle gch; gch = GCHandle.FromIntPtr(ctx); DTLS_con con = (DTLS_con)gch.Target; Byte[] msg = new Byte[sz]; Marshal.Copy(buf, msg, 0, sz); try { con.udp.Send(msg, msg.Length, con.ep); return msg.Length; } catch (Exception e) { log(ERROR_LOG, "socket connection issue " + e.ToString()); return wolfssl.CBIO_ERR_CONN_CLOSE; } } /// /// Call back to allow recieving DTLS information /// /// structure of ssl passed in /// buffer to contain recieved msg /// size of buffer /// optional information passed in /// size of message recieved private static int wolfSSL_dtlsCbIORecv(IntPtr ssl, IntPtr buf, int sz, IntPtr ctx) { if (sz <= 0) { log(ERROR_LOG, "wolfssl dtls recieve error, size less than 0"); return wolfssl.CBIO_ERR_GENERAL; } System.Runtime.InteropServices.GCHandle gch; gch = GCHandle.FromIntPtr(ctx); DTLS_con con = (DTLS_con)gch.Target; Byte[] msg = new Byte[sz]; try { msg = con.udp.Receive(ref con.ep); } catch (Exception e) { /* issue with receive or size of buffer */ log(ERROR_LOG, "socket read issue "+ e.ToString()); return wolfssl.CBIO_ERR_CONN_CLOSE; } Marshal.Copy(msg, 0, buf, msg.Length); return msg.Length; } /// /// Create a new ssl structure /// /// structure to create ssl structure from /// pointer to ssl structure public static IntPtr new_ssl(IntPtr ctx) { try { return wolfSSL_new(ctx); } catch (Exception e) { log(ERROR_LOG, e.ToString()); return IntPtr.Zero; } } /// /// Used for a server to accept a connection /// /// structure containing info for connection /// 1 on success public static int accept(IntPtr ssl) { if (ssl == IntPtr.Zero) return FAILURE; try { return wolfSSL_accept(ssl); } catch (Exception e) { log(ERROR_LOG, "accept error " + e.ToString()); return FAILURE; } } /// /// Used for a client to connect /// /// structure containing connection info /// 1 on success public static int connect(IntPtr ssl) { if (ssl == IntPtr.Zero) return FAILURE; try { return wolfSSL_connect(ssl); } catch (Exception e) { log(ERROR_LOG, "connect error " + e.ToString()); return FAILURE; } } /// /// Read message from secure connection /// /// structure containing info about connection /// object to hold incoming message /// size of available memory in buf /// amount of data read on success public static int read(IntPtr ssl, StringBuilder buf, int sz) { if (ssl == IntPtr.Zero) return FAILURE; try { return wolfSSL_read(ssl, buf, sz); } catch (Exception e) { log(ERROR_LOG, "wolfssl read error " + e.ToString()); return FAILURE; } } /// /// Write message to secure connection /// /// structure containing connection info /// message to send /// size of the message /// amount sent on success public static int write(IntPtr ssl, StringBuilder buf, int sz) { if (ssl == IntPtr.Zero) return FAILURE; try { return wolfSSL_write(ssl, buf, sz); } catch (Exception e) { log(ERROR_LOG, "wolfssl write error " + e.ToString()); return FAILURE; } } /// /// Free information stored in ssl struct /// /// pointer to ssl struct to free public static void free(IntPtr ssl) { try { /* free the handle for the socket */ IntPtr ptr = wolfSSL_GetIOReadCtx(ssl); if (ptr != IntPtr.Zero) { GCHandle gch = GCHandle.FromIntPtr(ptr); gch.Free(); } ptr = wolfSSL_GetIOWriteCtx(ssl); if (ptr != IntPtr.Zero) { GCHandle gch = GCHandle.FromIntPtr(ptr); gch.Free(); } wolfSSL_free(ssl); } catch (Exception e) { log(ERROR_LOG, "wolfssl free error " + e.ToString()); } } /// /// Shutdown a connection /// /// pointer to ssl struct to close connection of /// 1 on success public static int shutdown(IntPtr ssl) { if (ssl == IntPtr.Zero) return FAILURE; try { return wolfSSL_shutdown(ssl); } catch (Exception e) { log(ERROR_LOG, "wolfssl shutdwon error " + e.ToString()); return FAILURE; } } /// /// Optional, can be used to set a custom recieve function /// /// structure to set recieve function in /// function to use when reading socket public static void SetIORecv(IntPtr ctx, CallbackIORecv_delegate func) { try { wolfSSL_SetIORecv(ctx, func); } catch (Exception e) { log(ERROR_LOG, "wolfssl setIORecv error " + e.ToString()); } } /// /// Optional, can be used to set a custom send function /// /// structure to set function in /// function to use when sending data public static void SetIOSend(IntPtr ctx, CallbackIOSend_delegate func) { try { wolfSSL_SetIOSend(ctx, func); } catch (Exception e) { log(ERROR_LOG, "wolfssl setIOSend error " + e.ToString()); } } /// /// Create a new CTX structure /// /// method to use such as TLSv1.2 /// pointer to CTX structure public static IntPtr CTX_new(IntPtr method) { try { IntPtr ctx = wolfSSL_CTX_new(method); if (ctx == IntPtr.Zero) return ctx; CallbackIORecv_delegate recv = new CallbackIORecv_delegate(wolfssl.wolfSSLCbIORecv); wolfSSL_SetIORecv(ctx, recv); CallbackIOSend_delegate send = new CallbackIOSend_delegate(wolfssl.wolfSSLCbIOSend); wolfSSL_SetIOSend(ctx, send); return ctx; } catch (Exception e) { log(ERROR_LOG, "ctx_new error " + e.ToString()); return IntPtr.Zero; } } /// /// Create a new CTX structure for a DTLS connection /// /// Method to use in connection ie DTLSv1.2 /// public static IntPtr CTX_dtls_new(IntPtr method) { try { IntPtr ctx = wolfSSL_CTX_new(method); if (ctx == IntPtr.Zero) return ctx; CallbackIORecv_delegate recv = new CallbackIORecv_delegate(wolfssl.wolfSSL_dtlsCbIORecv); wolfSSL_SetIORecv(ctx, recv); CallbackIOSend_delegate send = new CallbackIOSend_delegate(wolfssl.wolfSSL_dtlsCbIOSend); wolfSSL_SetIOSend(ctx, send); return ctx; } catch (Exception e) { log(ERROR_LOG, "ctx_dtls_new error " + e.ToString()); return IntPtr.Zero; } } /// /// Free information used in CTX structure /// /// structure to free public static void CTX_free(IntPtr ctx) { try { wolfSSL_CTX_free(ctx); } catch (Exception e) { log(ERROR_LOG, "wolfssl ctx free error " + e.ToString()); } } /// /// Set identity hint to use /// /// pointer to structure of ctx to set hint in /// hint to use /// 1 on success public static int CTX_use_psk_identity_hint(IntPtr ctx, StringBuilder hint) { try { return wolfSSL_CTX_use_psk_identity_hint(ctx, hint); } catch (Exception e) { log(ERROR_LOG, "wolfssl psk identity hint error " + e.ToString()); return FAILURE; } } /// /// Set the function to use for PSK connections /// /// pointer to CTX that the function is set in /// PSK function to use public static void CTX_set_psk_server_callback(IntPtr ctx, psk_delegate psk_cb) { try { wolfSSL_CTX_set_psk_server_callback(ctx, psk_cb); } catch (Exception e) { log(ERROR_LOG, "wolfssl psk server callback error " + e.ToString()); } } /// /// Set the function to use for PSK connections on a single TLS/DTLS connection /// /// pointer to SSL that the function is set in /// PSK function to use public static void set_psk_server_callback(IntPtr ssl, psk_delegate psk_cb) { try { wolfSSL_set_psk_server_callback(ssl, psk_cb); } catch (Exception e) { log(ERROR_LOG, "wolfssl psk server callback error " + e.ToString()); } } /// /// Set Socket for TLS connection /// /// structure to set Socket in /// Socket to use /// 1 on success public static int set_fd(IntPtr ssl, Socket fd) { /* sanity check on inputs */ if (ssl == IntPtr.Zero) { return FAILURE; } try { if (!fd.Equals(null)) { IntPtr ptr = GCHandle.ToIntPtr(GCHandle.Alloc(fd)); wolfSSL_SetIOWriteCtx(ssl, ptr); //pass along the socket for writing to wolfSSL_SetIOReadCtx(ssl, ptr); //pass along the socket for reading from } } catch (Exception e) { log(ERROR_LOG, "Error setting up fd!! " + e.ToString()); return FAILURE; } return 1; } /// /// Get socket of a TLS connection /// /// structure to get socket from /// Socket object used for connection public static Socket get_fd(IntPtr ssl) { try { IntPtr ptr = wolfSSL_GetIOReadCtx(ssl); if (ptr != IntPtr.Zero) { GCHandle gch = GCHandle.FromIntPtr(ptr); return (System.Net.Sockets.Socket)gch.Target; } return null; } catch (Exception e) { log(ERROR_LOG, "wolfssl get_fd error " + e.ToString()); return null; } } /// /// Set information needed to send and receive a DTLS connection /// /// structure to set information in /// UDP object to send and receive /// End point of connection /// 1 on success public static int set_dtls_fd(IntPtr ssl, UdpClient udp, IPEndPoint ep) { IntPtr ptr; DTLS_con con; /* sanity check on inputs */ if (ssl == IntPtr.Zero) { return FAILURE; } try { if (!udp.Equals(null) && !ep.Equals(null)) { con = new DTLS_con(); con.udp = udp; con.ep = ep; ptr = GCHandle.ToIntPtr(GCHandle.Alloc(con)); wolfSSL_SetIOWriteCtx(ssl, ptr); //pass along the socket for writing to wolfSSL_SetIOReadCtx(ssl, ptr); //pass along the socket for reading from } } catch (Exception e) { log(ERROR_LOG, "Error setting up fd!! " + e.ToString()); return FAILURE; } return 1; } /// /// Get the pointer to DTLS_con class used for connection /// /// structure to get connection from /// DTLS_con object public static DTLS_con get_dtls_fd(IntPtr ssl) { try { IntPtr ptr = wolfSSL_GetIOReadCtx(ssl); if (ptr != IntPtr.Zero) { GCHandle gch = GCHandle.FromIntPtr(ptr); return (DTLS_con)gch.Target; } return null; } catch (Exception e) { log(ERROR_LOG, "wolfssl get_dtls_fd error " + e.ToString()); return null; } } /// /// Get available cipher suites /// /// list to fill with cipher suite names /// size of list available to fill /// 1 on success public static int get_ciphers(StringBuilder list, int sz) { try { return wolfSSL_get_ciphers(list, sz); } catch (Exception e) { log(ERROR_LOG, "wolfssl get_ciphers error " + e.ToString()); return FAILURE; } } /// /// Initialize wolfSSL library /// /// 1 on success public static int Init() { try { return wolfSSL_Init(); } catch (Exception e) { log(ERROR_LOG, "wolfssl init error " + e.ToString()); return FAILURE; } } /// /// Clean up wolfSSL library memory /// /// 1 on success public static int Cleanup() { try { return wolfSSL_Cleanup(); } catch (Exception e) { log(ERROR_LOG, "wolfssl cleanup error " + e.ToString()); return FAILURE; } } /// /// Set up TLS version 1.2 method /// /// pointer to TLSv1.2 method public static IntPtr useTLSv1_2_server() { try { return wolfTLSv1_2_server_method(); } catch (Exception e) { log(ERROR_LOG, "wolfssl error " + e.ToString()); return IntPtr.Zero; } } /// /// Use any TLS version /// /// pointer to method public static IntPtr usev23_server() { try { return wolfSSLv23_server_method(); } catch (Exception e) { log(ERROR_LOG, "wolfssl error " + e.ToString()); return IntPtr.Zero; } } /// /// Set up TLS version 1.2 method /// /// pointer to TLSv1.2 method public static IntPtr useTLSv1_2_client() { try { return wolfTLSv1_2_client_method(); } catch (Exception e) { log(ERROR_LOG, "wolfssl error " + e.ToString()); return IntPtr.Zero; } } /// /// Use any TLS version /// /// pointer to method public static IntPtr usev23_client() { try { return wolfSSLv23_client_method(); } catch (Exception e) { log(ERROR_LOG, "wolfssl error " + e.ToString()); return IntPtr.Zero; } } /// /// Set up DTLS version 1.2 /// /// pointer to DTLSv1.2 method public static IntPtr useDTLSv1_2_server() { try { return wolfDTLSv1_2_server_method(); } catch (Exception e) { log(ERROR_LOG, "wolfssl error " + e.ToString()); return IntPtr.Zero; } } /// /// Set up DTLS version 1.2 /// /// pointer to DTLSv1.2 method public static IntPtr useDTLSv1_2_client() { try { return wolfDTLSv1_2_client_method(); } catch (Exception e) { log(ERROR_LOG, "wolfssl error " + e.ToString()); return IntPtr.Zero; } } /// /// Gets the current cipher suite being used in connection /// /// SSL struct to get cipher suite from /// string containing current cipher suite public static string get_current_cipher(IntPtr ssl) { if (ssl == IntPtr.Zero) return null; try { IntPtr ssl_cipher; IntPtr ssl_cipher_ptr; string ssl_cipher_str; ssl_cipher = wolfSSL_get_current_cipher(ssl); ssl_cipher_ptr = wolfSSL_CIPHER_get_name(ssl_cipher); ssl_cipher_str = Marshal.PtrToStringAnsi(ssl_cipher_ptr); return ssl_cipher_str; } catch (Exception e) { log(ERROR_LOG, "wolfssl get current cipher error " + e.ToString()); return null; } } /// /// Set avialable cipher suites for all ssl structs created from ctx /// /// CTX structure to set /// List full of ciphers suites /// 1 on success public static int CTX_set_cipher_list(IntPtr ctx, StringBuilder list) { try { return wolfSSL_CTX_set_cipher_list(ctx, list); } catch (Exception e) { log(ERROR_LOG, "wolfssl ctx set cipher list error " + e.ToString()); return FAILURE; } } /// /// Set available cipher suite in local connection /// /// Structure to set cipher suite in /// List of cipher suites /// 1 on success public static int set_cipher_list(IntPtr ssl, StringBuilder list) { try { return wolfSSL_set_cipher_list(ssl, list); } catch (Exception e) { log(ERROR_LOG, "wolfssl set cipher error " + e.ToString()); return FAILURE; } } /// /// Gets the version of the connection made ie TLSv1.2 /// /// SSL struct to get version of /// string containing version public static string get_version(IntPtr ssl) { if (ssl == IntPtr.Zero) return null; try { IntPtr version_ptr; string version; version_ptr = wolfSSL_get_version(ssl); version = Marshal.PtrToStringAnsi(version_ptr); return version; } catch (Exception e) { log(ERROR_LOG, "wolfssl get version error " + e.ToString()); return null; } } /// /// Get a string containing error value and reason /// /// SSL struct that had error /// String containing error value and reason public static string get_error(IntPtr ssl) { if (ssl == IntPtr.Zero) return null; try { int err; StringBuilder err_name; StringBuilder ret; /* wolfSSL max error length is 80 */ ret = new StringBuilder(' ', 100); err = wolfSSL_get_error(ssl, 0); err_name = new StringBuilder(' ', 80); wolfSSL_ERR_error_string(err, err_name); ret.Append("Error " + err + " " + err_name); return ret.ToString(); } catch (Exception e) { log(ERROR_LOG, "wolfssl get error, error " + e.ToString()); return null; } } /// /// Used to load in the certificate file /// /// CTX structure for TLS/SSL connections /// Name of the file to load including absolute path /// Type of file ie PEM or DER /// 1 on success public static int CTX_use_certificate_file(IntPtr ctx, string fileCert, int type) { try { return wolfSSL_CTX_use_certificate_file(ctx, fileCert, type); } catch (Exception e) { log(ERROR_LOG, "wolfssl ctx use cert file error " + e.ToString()); return FAILURE; } } /// /// Used to load in the private key from a file /// /// CTX structure for TLS/SSL connections /// Name of the file, includeing absolute directory /// Type of file ie PEM or DER /// 1 on succes public static int CTX_use_PrivateKey_file(IntPtr ctx, string fileKey, int type) { try { return wolfSSL_CTX_use_PrivateKey_file(ctx, fileKey, type); } catch (Exception e) { log(ERROR_LOG, "wolfssl ctx use key file error " + e.ToString()); return FAILURE; } } /// /// Set temporary DH parameters /// /// Structure to set in /// file name /// type of file ie PEM /// 1 on success public static int SetTmpDH_file(IntPtr ssl, StringBuilder dhparam, int file_type) { try { return wolfSSL_SetTmpDH_file(ssl, dhparam, file_type); } catch (Exception e) { log(ERROR_LOG, "wolfssl set tmp dh file error " + e.ToString()); return FAILURE; } } /// /// Used to set the minimum size of DH key /// /// Structure to store key size /// Min key size /// 1 on success public static int CTX_SetMinDhKey_Sz(IntPtr ctx, short minDhKey) { try { return wolfSSL_CTX_SetMinDhKey_Sz(ctx, minDhKey); } catch (Exception e) { log(ERROR_LOG, "wolfssl ctx set min dh key error " + e.ToString()); return FAILURE; } } /// /// Set the function to use for logging /// /// Function that conforms as to loggingCb /// 1 on success public static int SetLogging(loggingCb input) { internal_log = input; return SUCCESS; } /// /// Log a message to set logging function /// /// Level of log message /// Message to log public static void log(int lvl, string msg) { /* if log is not set then pring nothing */ if (internal_log == null) return; StringBuilder ptr = new StringBuilder(msg); internal_log(lvl, ptr); } } }