georgios Spanos

Results 56 comments of georgios Spanos

can you run cpp -dM ./dummy.hxx |\grep -i -e linux -e __arm__ -e __ARDUINO_X86__ and show me the results ?

@jaggarwal96 can you please try with the changes pointed our at #32 issue, and report back? the file change is : AES_config.h at line 8 from `#if (defined(__linux) || defined(linux))...

in AES.h there is the header code that defines functions missing in boards. `#if defined(__ARDUINO_X86__) || (defined (__linux) || defined (linux)) #undef PROGMEM #define PROGMEM __attribute__(( section(".progmem.data") )) #define pgm_read_byte(p)...

my bad the file is : AES_config.h the code you need for due is : defined(__SAM3X8E__) and is an ARM device but I need to know if the Arduino due...

you can try , but there will be other errors as well. link me your AES_config.h to my email : [email protected] and I will try to make a modified version...

i would like to check it on my boards as well. can you do a PR? also this is the correct way to do it, as it will show you...

moving to pull request conv.

PKCS7Padding but limited to 16bytes block. in the library check the AES.cpp for padPlaintext. the size of the output is resonable, as in the aes.do_aes_encrypt you set the size to...

no, the IV is part of the cipher (this comes from the Mechanism) the last cipher is the new IV. the data is just confusing, i have to fix that...

Can you send me you ino file? Or just the plaintext/iv you want to use? The expected results are above as i read. On Oct 31, 2017 8:50 PM, "rsegecin"...