Search found 79 matches

by Jon
Mon Jul 12, 2021 10:29 am
Forum: NetBurner Software
Topic: Programming via secure connection
Replies: 12
Views: 3846

Re: Programming via secure connection

Hi SeeCwriter, In 3.x, the system libraries have been moved to \nburn\nbrtos. There you will find the source and include directories. For predef.h, SSL/TLS, and SSH are on by default, so you shouldn't need to make any changes there, unless you want to turn it off. By TLS HTTPS webserver, I think Pau...
by Jon
Wed Jul 07, 2021 10:02 am
Forum: NetBurner Software
Topic: Onboard Cert Gen Example
Replies: 4
Views: 1570

Re: Onboard Cert Gen Example

Hi SeeCwriter,

I'm glad that you were able to get it sorted out. Please don't hesitate to let us know if you have any other issues or questions.

Kind Regards,
Jon
by Jon
Fri Jul 02, 2021 2:45 pm
Forum: NetBurner Software
Topic: Onboard Cert Gen Example
Replies: 4
Views: 1570

Re: Onboard Cert Gen Example

Hi SeeCwriter, I just tested this with a fresh 2.9.5 install on a MOD5441X and it seems to be working. I do get an error from Chrome, but it let's me proceed to the webpage. Would you mind sending the .s19 file you generated and I'll test yours? You can send it directly to jcox(at)netburner.com. I'l...
by Jon
Fri Jun 25, 2021 10:40 am
Forum: NetBurner Software
Topic: Onboard Cert Gen Example
Replies: 4
Views: 1570

Re: Onboard Cert Gen Example

Hi SeeCwriter,

I've run through this example before and it worked prevously. I'll give it another go and see what kind of results I get, and let you know. Thanks for the heads up.

Kind Regards,
Jon
by Jon
Thu Jun 17, 2021 1:53 pm
Forum: NetBurner Software
Topic: Autogenerated certs
Replies: 1
Views: 1118

Re: Autogenerated certs

Hi SeeCwriter, Currently that is the case, though only if autogenerated certs are currently being used. Autogenerated certs are only initially generated if there are no other certs installed on the device (either compiled in or loaded via the file system), and the device tries to initialize the SSL/...
by Jon
Wed Apr 28, 2021 10:47 am
Forum: NetBurner Software
Topic: undefined reference function
Replies: 11
Views: 3923

Re: undefined reference function

Hey RebootExpert, When you rebuild the system libraries in NBEclipse, does it list the platform that you've selected for the project during the rebuild, or does it show the CB34EX? This can happen if you select rebuild system libraries without having a project selected. Just to make certain we're re...
by Jon
Tue Apr 27, 2021 2:55 pm
Forum: NetBurner Software
Topic: undefined reference function
Replies: 11
Views: 3923

Re: undefined reference function

Hi RebootExpert, Sorry about that, the file you mentioned is the correct one. When you did the rebuild, is that from the command line or through NBEclipse? It shouldn't matter, but I'm just trying to collect as much info as possible. Would it be possible for you to send me your project code and your...
by Jon
Mon Apr 26, 2021 2:01 pm
Forum: NetBurner Software
Topic: undefined reference function
Replies: 11
Views: 3923

Re: undefined reference function

Hi RebootExpert, To use this function, you'll need to undefine NO_FILESYSTEM in nburn\include\crypto\platform\<platform>.h and then rebuild the crypto libraries. In the next release of our tools, this will be used in the function IsSSL_CertNKeyValid() , so you'll be able to use that to the same effe...
by Jon
Thu Apr 22, 2021 2:01 pm
Forum: NetBurner Software
Topic: FormData from JS
Replies: 3
Views: 1576

Re: FormData from JS

Hi Fredy, In the callback handler for HtmlPostVariableListCallback, you can add the following on receiving the eEndOfPost event, instead of the redirect like we show in our examples: writestring(sock, "HTTP/1.0 200\r\n\r\n"); This will just send a normal server okay response. From there, y...
by Jon
Mon Apr 12, 2021 4:36 pm
Forum: NetBurner Software
Topic: sign the auto gen cert
Replies: 4
Views: 2459

Re: sign the auto gen cert

Hi RebootExpert, I'm glad you were able to get it working! The other function you mentioned, wc_MakeCertReq(), is actually for creating a certificate signing request. This would then get sent to a CA to be signed and returned. Because we provide the CA here locally, we don't need to create this requ...