Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Oct 22, 2024
1 parent 6180c6e commit 3700ee7
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
Empty file modified esubghz_chat/crypto/aes.c
100755 → 100644
Empty file.
6 changes: 3 additions & 3 deletions esubghz_chat/crypto/aes.h
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ int aes_setkey(
int mode, // 1 or 0 for Encrypt/Decrypt
const uchar* key, // AES input key
uint keysize); // size in bytes (must be 16, 24, 32 for
// 128, 192 or 256-bit keys respectively)
// returns 0 for success
// 128, 192 or 256-bit keys respectively)
// returns 0 for success

/******************************************************************************
* AES_CIPHER : called to encrypt or decrypt ONE 128-bit block of data
Expand All @@ -75,6 +75,6 @@ int aes_cipher(
aes_context* ctx, // pointer to context
const uchar input[16], // 128-bit block to en/decipher
uchar output[16]); // 128-bit output result block
// returns 0 for success
// returns 0 for success

#endif /* AES_HEADER */
Empty file modified esubghz_chat/crypto/gcm.c
100755 → 100644
Empty file.
Empty file modified esubghz_chat/crypto/gcm.h
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion esubghz_chat/helpers/radio_device_loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ void radio_device_loader_end(const SubGhzDevice* radio_device) {
//if(radio_device != subghz_devices_get_by_name(SUBGHZ_DEVICE_CC1101_INT_NAME)) {
// subghz_devices_end(radio_device);
//}
}
}
2 changes: 1 addition & 1 deletion esubghz_chat/helpers/radio_device_loader.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ const SubGhzDevice* radio_device_loader_set(
const SubGhzDevice* current_radio_device,
SubGhzRadioDeviceType radio_device_type);

void radio_device_loader_end(const SubGhzDevice* radio_device);
void radio_device_loader_end(const SubGhzDevice* radio_device);
2 changes: 1 addition & 1 deletion eth_troubleshooter/eth_save_process.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,4 +298,4 @@ void ethernet_save_process_free(EthernetSaveConfig* config) {
storage_file_free(config->log_file);
furi_record_close(RECORD_STORAGE);
free(config);
}
}
2 changes: 1 addition & 1 deletion eth_troubleshooter/eth_view_process.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ typedef struct EthViewDrawStatic {
typedef struct EthViewDrawPing {
uint8_t current_digit;
uint8_t* ip;
} EthViewDrawPing;
} EthViewDrawPing;
2 changes: 1 addition & 1 deletion eth_troubleshooter/eth_worker_dhcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
void dhcp_timer_callback(void* context) {
UNUSED(context);
DHCP_time_handler();
}
}
2 changes: 1 addition & 1 deletion eth_troubleshooter/eth_worker_ping.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ void ping_wait_ms(int ms) {

uint8_t ping_auto_interface(uint8_t* address) {
return ping_auto(PING_SOCKET, address);
}
}

0 comments on commit 3700ee7

Please sign in to comment.