Giter VIP home page Giter VIP logo

arduinojwt's People

Contributors

per1234 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

arduinojwt's Issues

base64.h from ArduinoJWT overrides esp8266 framework base64.h

When I try to compile a platformio project that uses ota update and ArduinoJWT on esp8266 I get an error in ESP8266HTTPClient which uses its own implementation of base64.

compilation error below:

Compiling .pio/build/nodemcuv2/FrameworkArduino/HardwareSerial.cpp.o
Compiling .pio/build/nodemcuv2/FrameworkArduino/IPAddress.cpp.o
Compiling .pio/build/nodemcuv2/FrameworkArduino/MD5Builder.cpp.o
Compiling .pio/build/nodemcuv2/FrameworkArduino/Print.cpp.o
/home/andrii/.platformio/packages/framework-arduinoespressif8266/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp: In member function 'bool HTTPClient::beginInternal(const String&, const char*)':
/home/andrii/.platformio/packages/framework-arduinoespressif8266/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp:322:32: error: 'base64' has not been declared
         _base64Authorization = base64::encode(auth, false /* doNewLines */);
                                ^
/home/andrii/.platformio/packages/framework-arduinoespressif8266/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp: In member function 'void HTTPClient::setAuthorization(const char*, const char*)':
/home/andrii/.platformio/packages/framework-arduinoespressif8266/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp:510:32: error: 'base64' has not been declared
         _base64Authorization = base64::encode(auth, false /* doNewLines */);

AVR Update (must be declared as const error and others)

Solution:

Download attached ZIP with new library.
ArduinoJWT.zip

Explanation:
Edit ArduinoJWT and modify line 37:

const char* jwtHeader PROGMEM= "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9";

to:

const char* const jwtHeader PROGMEM= "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9";

Then in sha256.cpp you have to edit the original adding const to "unsigned char sha256InitState[] PROGMEM" and "uint32_t sha256K[] PROGMEM"

So ends like:

const uint32_t sha256K[] PROGMEM = {
0x428a2f98,0x71374491,0xb5c0fbcf,0xe9b5dba5,0x3956c25b,0x59f111f1,0x923f82a4,0xab1c5ed5,
0xd807aa98,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,0x80deb1fe,0x9bdc06a7,0xc19bf174,
0xe49b69c1,0xefbe4786,0x0fc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da,
0x983e5152,0xa831c66d,0xb00327c8,0xbf597fc7,0xc6e00bf3,0xd5a79147,0x06ca6351,0x14292967,
0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,0x81c2c92e,0x92722c85,
0xa2bfe8a1,0xa81a664b,0xc24b8b70,0xc76c51a3,0xd192e819,0xd6990624,0xf40e3585,0x106aa070,
0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3,
0x748f82ee,0x78a5636f,0x84c87814,0x8cc70208,0x90befffa,0xa4506ceb,0xbef9a3f7,0xc67178f2
};

#define BUFFER_SIZE 64

const unsigned char sha256InitState[] PROGMEM = {
0x67,0xe6,0x09,0x6a, // H0
0x85,0xae,0x67,0xbb, // H1
0x72,0xf3,0x6e,0x3c, // H2
0x3a,0xf5,0x4f,0xa5, // H3
0x7f,0x52,0x0e,0x51, // H4
0x8c,0x68,0x05,0x9b, // H5
0xab,0xd9,0x83,0x1f, // H6
0x19,0xcd,0xe0,0x5b // H7
};

can it support RS256?

Google iot core only support RS256 JWT.
do you have any plan or road map to support RS256. Very Thanks.

library.json has an platforms value that is too strict

You list platforms as atmelavr and espressif, but it works fine on esp32 (where I've been using it for quite a while, alongside esp8266).

For one of my projects I've now had to switch to lib_compat_mode = strict because I have another library dependency that only support esp32 and not esp8266, but the side effect is that ArduinoJWT is no longer included because it doesn't list esp32 among the supported platforms.

Small implementation example

As there is no exampleof implementation here I leave a small arduino sketch, hope it can help you:

#include <ArduinoJWT.h>
#include <sha256.h>


ArduinoJWT jwt = ArduinoJWT("secret");


void setup() {
 Serial.begin(9600);

 // jwt.setPSK("My secret");
 String msg = [];
 msg["Monto"]=
 Serial.println(jwt.encodeJWT(msg));
  
  // put your setup code here, to run once:

}

void loop() {
  // put your main code here, to run repeatedly:

}

How to use this library ?

I want use this library to encode information in arduino uno and send it to the web server , can you help me ? ( I want an example code for encoding )

Can't make it run

Have Arduino UNO but can't make it run.
Have implemented some fixes for variable type, but lib itself return NULL value.

Is any suggestion/example how to use lib ?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.