Skip to content

Commit

Permalink
don't show lora secret keys
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberman54 committed Jan 21, 2023
1 parent c956d79 commit ebf8202
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lorawan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,12 @@ void showLoraKeys(void) {
// all EUI buffer so we do it here to a temp
// buffer to be able to display them
uint8_t buf[32];
os_getArtEui((u1_t *)buf);
printKey("AppEUI", buf, 8, true);
os_getDevEui((u1_t *)buf);
printKey("DevEUI", buf, 8, true);
os_getDevKey((u1_t *)buf);
printKey("AppKey", buf, 16, false);
//os_getArtEui((u1_t *)buf);
//printKey("AppEUI", buf, 8, true);
//os_getDevKey((u1_t *)buf);
//printKey("AppKey", buf, 16, false);
}

#endif // VERBOSE
Expand Down

0 comments on commit ebf8202

Please sign in to comment.