Search found 78 matches

by RebootExpert
Fri Nov 05, 2021 2:44 pm
Forum: NetBurner Software
Topic: Code signing...
Replies: 6
Views: 2307

Re: Code signing...

Just test out the signing feature in 3.3.4. Can you automate the signing when build with Eclipse IDE?
by RebootExpert
Fri Sep 17, 2021 10:15 am
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4015

Re: SSL mutual authentication

Hi Jon, Thanks for the info. There's an issue I've found. As I set the client authentication to be mandatory, now all the other ports that are listening will mandate for a client certificate to be able to establish a connection. To be more detail, device is accepting connection at two ports. eg 3000...
by RebootExpert
Fri Sep 10, 2021 9:45 am
Forum: NetBurner Software
Topic: Code signing...
Replies: 6
Views: 2307

Re: Code signing...

No it's just a question popped into my head when I saw it supports RSA , but leaves ECC out.
by RebootExpert
Thu Sep 09, 2021 11:20 pm
Forum: NetBurner Software
Topic: Code signing...
Replies: 6
Views: 2307

Re: Code signing...

Does nbsign have an option to input a hash algorithm for signing? Is it possible sign with a ecc key?
by RebootExpert
Fri Sep 03, 2021 10:02 am
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4015

Re: SSL mutual authentication

Hi Jon, It works perfectly. However I am not sure if it's part of the TLS standard to accept the connection without a client cert when it requests or it depend on the individual who implement it. Because I saw a note about TLS class API in microsoft document , it is class I use to build my desptop a...
by RebootExpert
Thu Sep 02, 2021 3:30 pm
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4015

Re: SSL mutual authentication

Thanks Jon. The reason my client cert got reject because I convert a pem format of client ca cert to a cpp file using compfile. Instead I convert to der format first and compfile to cpp file. and set the parameter format to SSL_FILETYPE_ASN1 in ssl_accept();
by RebootExpert
Thu Sep 02, 2021 11:01 am
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4015

Re: SSL mutual authentication

Now as my desktop applicant provide a client certificate during the handshake, the module will reject the connection request. It send a tcp FIN packet right after it receive client cert. handshake.jpg I set the parameter as follow: SSL_accept(listener, &address, NULL, 0, true, true, client_ca_ce...
by RebootExpert
Tue Aug 31, 2021 12:33 pm
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4015

Re: SSL mutual authentication

looking in the wireshark, there's no client certificate request in server hello message during the handshake. update: strangely, when I reboot the module, and tried establish a tls connection with peer verify = true. This time, I did see a certificate request in the server hello of the tls handshake...
by RebootExpert
Sat Aug 28, 2021 12:51 pm
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4015

Re: SSL mutual authentication

2.9.3
by RebootExpert
Fri Aug 27, 2021 2:49 pm
Forum: NetBurner Software
Topic: SSL mutual authentication
Replies: 10
Views: 4015

SSL mutual authentication

What is the proper way to authenticate client certificate? Right now I have MOD54415 serve as server accepting ssl connection using the function SSL_accept(); What is not clear to me is that I set the parameter verifyPeer as true, and in my desktop console app serve as a client, the client still can...