Search found 79 matches

by Jon
Tue Sep 28, 2021 10:21 am
Forum: NetBurner Software
Topic: Building v3.3.3 System
Replies: 4
Views: 1571

Re: Building v3.3.3 System

Hi SeeCwriter, You're right about the semi-colon. I'll be sure to remove that on our end. The linker error is because there is no additional application code, and no entry point for the program to start from. If you pick any of the application content options when creating the project, this won't be...
by Jon
Tue Sep 07, 2021 3:18 pm
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4088

Re: SSL mutual authentication

Hi RebootExpert, It looks like, according to the RFC, it's up to the discretion of the server on whether or not to continue the connection if a cert is requested and not given: 7.4.6. Client Certificate When this message will be sent: This is the first message the client can send after receiving a S...
by Jon
Thu Sep 02, 2021 5:48 pm
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4088

Re: SSL mutual authentication

Hi RebootExpert,

I'm glad to hear that you got it working, and you're more than welcome. Did you need to add the additional flag to wolfSSL_CTX_set_verify(), or did it work as is for you?

Kind Regards,
Jon
by Jon
Thu Sep 02, 2021 11:56 am
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4088

Re: SSL mutual authentication

Hi RebootExpert, Taking a look, I think I see what's going on. First to answer the question about parameters: SSL_accept(listener, &address, NULL, 0, true, true, client_ca_cert, client_ca_cert_len, SSL_FILETYPE_PEM, <client_cert_comman_name>); The second bool is for the call to set verify peer. ...
by Jon
Thu Aug 26, 2021 11:57 am
Forum: NetBurner Software
Topic: TLS Certificates
Replies: 14
Views: 5139

Re: TLS Certificates

Hi SeeCwriter, All the changes mentioned above are pushed into our repo and will be integrated into the next release for 2.x. The library does support x.509 certificates, which is the standard used to dictate how SSL/TLS certificates are structured. The formats accepted for these certificates are DE...
by Jon
Mon Aug 23, 2021 3:31 pm
Forum: NetBurner Software
Topic: TLS Certificates
Replies: 14
Views: 5139

Re: TLS Certificates

Hi SeeCWriter, I have to correct my previous statement, it seems. Sorry about the confusion here. When SSL_accept() is called, it will check the status of the certificate the first time as part of the server initialization (specifically in SslInitServer()). Future calls to SSL_accept() will not trig...
by Jon
Tue Aug 17, 2021 11:04 am
Forum: NetBurner Software
Topic: TLS Certificates
Replies: 14
Views: 5139

Re: TLS Certificates

Hi SeeCwriter, You're very welcome, and that is correct. For your question about the dates, did your co-worker get that fix through support? Do you have any info I can use to help look it up? You can message me directly on the forum jcox(at)netburner.com to avoid posting personal info. Kind Regards,...
by Jon
Thu Aug 12, 2021 10:50 am
Forum: NetBurner Software
Topic: TLS Certificates
Replies: 14
Views: 5139

Re: TLS Certificates

Hi SeeCwriter, I can see where the confusion is here, and our documentation can certainly use some help in this regard. A couple of things that will hopefully help with getting you on the right track: - The certBuff and certBuffLen parameters for SSL_accept() are for peer verification only and have ...
by Jon
Tue Aug 10, 2021 12:23 pm
Forum: NetBurner Software
Topic: TLS Certificates
Replies: 14
Views: 5139

Re: TLS Certificates

Hi SeeCwriter, Any files that are uploaded via the example are renamed to CACert<num>.crt. That way the application knows what to look for without having to to go through the extra step of storing a list of the filenames to search for. When you list the contents of the filesystem, do the files named...
by Jon
Thu Aug 05, 2021 10:57 am
Forum: NetBurner Software
Topic: TLS 1.3
Replies: 1
Views: 964

Re: TLS 1.3

Hey SeeCwriter,

It should be up in our next release (3.3.3), which will be available in the next couple of weeks. Just out of curiosity, would it be possible to get more information on your plans for its use?

Kind Regards,
Jon