මෙම ලිපිය ඇමෙරිකානු ඉංග්රීසි. බසින් පමණි
4 thoughts on “(English) Simple Encryption Test with PIC microcontrollers”
ප්රතිචාරයක් ලබාදෙන්න
මෙම ලිපිය ඇමෙරිකානු ඉංග්රීසි. බසින් පමණි
This site uses Akismet to reduce spam. Learn how your comment data is processed.
ස | අ | බ | බ්ර | සි | සෙ | ඉ |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
very fine
very good. I’ll try to try with another kind of compiler and micro’s
Pingback: Types of Cryptography for a 4-8 bit microcontroller | CL-UAT
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?