Skip to content

Commit eae03d1

Browse files
committed
Fixed a few small things.
1 parent d0fd80e commit eae03d1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# RF24Signing
22
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/1080/badge)](https://bestpractices.coreinfrastructure.org/projects/1080)
33

4-
A transparent signing library for RF24Mesh.
4+
A transparent signing library for RF24Mesh. Requires modified version of RF24Network to function and ATSHA204 library that provides the necessary cryptographic functions.

RF24Signing.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ void hash_data(void * payload, size_t payload_size) {
9292
Serial.println((uint8_t) payload);
9393
Serial.println(payload_size);
9494
for (uint8_t i = 0; i < payload_size; i++) { //Read the payload from the
95-
Serial.print(F("Writing... ")); //the payload byte by byte to the crypto
95+
Serial.print(F("Writing... ")); //the payload byte by byte to the crypto
9696
uint8_t * pload = (uint8_t*) payload;
9797
uint8_t * pload_shifted = pload + i;
9898
Serial.print((uint8_t) *pload_shifted, DEC);
@@ -102,7 +102,7 @@ void hash_data(void * payload, size_t payload_size) {
102102
Serial.println();
103103
}
104104

105-
void hash_print(uint8_t * hash) {
105+
void hash_print(uint8_t * hash) { //TODO: UNREQUIRED
106106
for (uint8_t i = 0; i < 32; i++) {
107107
Serial.print("0123456789abcdef"[hash[i] >> 4]);
108108
Serial.print("0123456789abcdef"[hash[i] & 0xf]);

docs/.doxygen

Whitespace-only changes.

0 commit comments

Comments
 (0)