public int UsePrivateKeyFile(string filename, SslFileType type) { return(Native.ExpectSuccess(Native.SSL_CTX_use_PrivateKey_file(this.ptr, filename, (int)type))); }
public int UseCertificateFile(string filename, SslFileType type) { return(Native.ExpectSuccess(Native.SSL_CTX_use_certificate_file(this.ptr, filename, (int)type))); }
public int UsePrivateKeyFile(string filename, SslFileType type) { return Native.ExpectSuccess(Native.SSL_CTX_use_PrivateKey_file(this.ptr, filename, (int)type)); }
internal int UsePrivateKeyFile(string filename, SslFileType type) { return(Native.ExpectSuccess(Native.SSL_use_PrivateKey_file(ptr, filename, (int)type))); }
internal int UseCertificateFile(string filename, SslFileType type) { return(Native.ExpectSuccess(Native.SSL_use_certificate_file(ptr, filename, (int)type))); }
public int UseCertificateFile(string filename, SslFileType type) { return Native.ExpectSuccess(Native.SSL_CTX_use_certificate_file(this.ptr, filename, (int)type)); }
internal int UsePrivateKeyFile(string filename, SslFileType type) { return Native.ExpectSuccess(Native.SSL_use_PrivateKey_file(ptr, filename, (int)type)); }
internal int UseCertificateFile(string filename, SslFileType type) { return Native.ExpectSuccess(Native.SSL_use_certificate_file(ptr, filename, (int)type)); }