Skip to content

4 thoughts on “(English) Simple Encryption Test with PIC microcontrollers

  1. suresh. says:

    very fine

  2. Nubielab says:

    very good. I’ll try to try with another kind of compiler and micro’s

  3. Pingback: Types of Cryptography for a 4-8 bit microcontroller | CL-UAT

  4. Andy says:

    unsigned short x1a0[8];
    unsigned char cle[17];

    for (j=0;j<=16;j++) {
    cle[j]=0;
    }
    for (j=0;j<=8;j++) {
    x1a0[j]=0;
    }

    The array initialisation of x1a0[] goes out of bounds.

    Should x1a0 be defined as 9 bytes long, or should the for() loop only be initialising a byte less?

Comments are closed.